1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
/*
* Copyright (C) 2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/command_stream/host_function_worker_interface.h"
#include "shared/source/command_stream/host_function.h"
#include "shared/source/utilities/wait_util.h"
#include <chrono>
#include <type_traits>
namespace NEO {
HostFunctionSingleWorker::HostFunctionSingleWorker(bool skipHostFunctionExecution)
: HostFunctionWorker(skipHostFunctionExecution) {
}
HostFunctionSingleWorker::~HostFunctionSingleWorker() = default;
void HostFunctionSingleWorker::processNextHostFunction(std::stop_token st) noexcept {
if (skipHostFunctionExecution == false) {
auto hostFunctionId = waitUntilHostFunctionIsReady(st);
if (hostFunctionId != HostFunctionStatus::completed) {
auto hostFunction = streamer->getHostFunction(hostFunctionId);
streamer->prepareForExecution(hostFunction);
hostFunction.invoke();
streamer->signalHostFunctionCompletion(hostFunction);
}
}
}
uint64_t HostFunctionSingleWorker::waitUntilHostFunctionIsReady(std::stop_token st) noexcept {
const auto start = std::chrono::steady_clock::now();
while (true) {
if (st.stop_requested()) {
return HostFunctionStatus::completed;
}
streamer->downloadHostFunctionAllocation();
auto hostFunctionId = streamer->getHostFunctionReadyToExecute();
if (hostFunctionId != HostFunctionStatus::completed) {
return hostFunctionId;
}
auto waitTime = std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::steady_clock::now() - start);
WaitUtils::waitFunctionWithoutPredicate(waitTime.count());
}
}
} // namespace NEO
|