2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2023-01-02 19:14:39 +08:00
|
|
|
* Copyright (C) 2018-2023 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "user_event.h"
|
2019-02-27 18:39:32 +08:00
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/command_stream/command_stream_receiver.h"
|
2023-01-02 19:14:39 +08:00
|
|
|
#include "shared/source/compiler_interface/compiler_cache.h"
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/device/device.h"
|
2020-02-24 17:22:30 +08:00
|
|
|
|
2020-02-23 05:50:57 +08:00
|
|
|
#include "opencl/source/command_queue/command_queue.h"
|
|
|
|
#include "opencl/source/context/context.h"
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
UserEvent::UserEvent(Context *ctx)
|
2020-06-16 19:19:11 +08:00
|
|
|
: Event(ctx, nullptr, CL_COMMAND_USER, CompletionStamp::notReady, CompletionStamp::notReady) {
|
2017-12-21 07:45:38 +08:00
|
|
|
transitionExecutionStatus(CL_QUEUED);
|
|
|
|
}
|
|
|
|
|
|
|
|
void UserEvent::updateExecutionStatus() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-02-22 20:51:29 +08:00
|
|
|
WaitStatus UserEvent::wait(bool blocking, bool useQuickKmdSleep) {
|
2017-12-22 18:44:41 +08:00
|
|
|
while (updateStatusAndCheckCompletion() == false) {
|
2017-12-21 07:45:38 +08:00
|
|
|
if (blocking == false) {
|
2022-02-22 20:51:29 +08:00
|
|
|
return WaitStatus::NotReady;
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
|
|
|
}
|
2022-02-22 20:51:29 +08:00
|
|
|
return WaitStatus::Ready;
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
|
|
|
|
2022-11-22 21:53:59 +08:00
|
|
|
TaskCountType UserEvent::getTaskLevel() {
|
2018-12-04 21:36:08 +08:00
|
|
|
if (peekExecutionStatus() == CL_COMPLETE) {
|
|
|
|
return 0;
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
2020-06-16 19:19:11 +08:00
|
|
|
return CompletionStamp::notReady;
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool UserEvent::isInitialEventStatus() const {
|
|
|
|
return executionStatus == CL_QUEUED;
|
|
|
|
}
|
|
|
|
|
|
|
|
VirtualEvent::VirtualEvent(CommandQueue *cmdQ, Context *ctx)
|
2020-06-16 19:19:11 +08:00
|
|
|
: Event(ctx, cmdQ, -1, CompletionStamp::notReady, CompletionStamp::notReady) {
|
2017-12-21 07:45:38 +08:00
|
|
|
transitionExecutionStatus(CL_QUEUED);
|
|
|
|
|
|
|
|
// internal object - no need for API refcount
|
|
|
|
convertToInternalObject();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VirtualEvent::updateExecutionStatus() {
|
|
|
|
}
|
|
|
|
|
2022-02-22 20:51:29 +08:00
|
|
|
WaitStatus VirtualEvent::wait(bool blocking, bool useQuickKmdSleep) {
|
2017-12-22 18:44:41 +08:00
|
|
|
while (updateStatusAndCheckCompletion() == false) {
|
2017-12-21 07:45:38 +08:00
|
|
|
if (blocking == false) {
|
2022-02-22 20:51:29 +08:00
|
|
|
return WaitStatus::NotReady;
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
|
|
|
}
|
2022-02-22 20:51:29 +08:00
|
|
|
return WaitStatus::Ready;
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
|
|
|
|
2022-11-22 21:53:59 +08:00
|
|
|
TaskCountType VirtualEvent::getTaskLevel() {
|
|
|
|
TaskCountType taskLevel = 0;
|
2018-11-22 20:57:10 +08:00
|
|
|
if (cmdQueue != nullptr) {
|
2019-07-15 20:28:09 +08:00
|
|
|
auto &csr = cmdQueue->getGpgpuCommandStreamReceiver();
|
2017-12-21 07:45:38 +08:00
|
|
|
taskLevel = csr.peekTaskLevel();
|
|
|
|
}
|
|
|
|
return taskLevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VirtualEvent::setStatus(cl_int status) {
|
|
|
|
// virtual events are just helper events and will have either
|
|
|
|
// "waiting" (after construction) or "complete" (on change if not blocked) execution state
|
2019-07-09 00:07:46 +08:00
|
|
|
if (isStatusCompletedByTermination(status) == false) {
|
2017-12-21 07:45:38 +08:00
|
|
|
status = CL_COMPLETE;
|
|
|
|
}
|
|
|
|
return Event::setStatus(status);
|
|
|
|
}
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|