compute-runtime/runtime/event/user_event.cpp

87 lines
2.2 KiB
C++
Raw Normal View History

/*
* Copyright (C) 2017-2018 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "user_event.h"
#include "runtime/command_stream/command_stream_receiver.h"
#include "runtime/context/context.h"
#include "runtime/device/device.h"
#include "runtime/command_queue/command_queue.h"
namespace OCLRT {
UserEvent::UserEvent(Context *ctx)
: Event(ctx, nullptr, CL_COMMAND_USER, eventNotReady, eventNotReady) {
transitionExecutionStatus(CL_QUEUED);
}
void UserEvent::updateExecutionStatus() {
return;
}
bool UserEvent::wait(bool blocking, bool useQuickKmdSleep) {
while (updateStatusAndCheckCompletion() == false) {
if (blocking == false) {
return false;
}
}
return true;
}
uint32_t UserEvent::getTaskLevel() {
uint32_t taskLevel = 0;
if (ctx != nullptr) {
Device *pDevice = ctx->getDevice(0);
auto csr = pDevice->getDefaultEngine().commandStreamReceiver;
taskLevel = csr->peekTaskLevel();
}
return taskLevel;
}
bool UserEvent::isInitialEventStatus() const {
return executionStatus == CL_QUEUED;
}
VirtualEvent::VirtualEvent(CommandQueue *cmdQ, Context *ctx)
: Event(ctx, cmdQ, -1, eventNotReady, eventNotReady) {
transitionExecutionStatus(CL_QUEUED);
// internal object - no need for API refcount
convertToInternalObject();
}
void VirtualEvent::updateExecutionStatus() {
;
}
bool VirtualEvent::wait(bool blocking, bool useQuickKmdSleep) {
while (updateStatusAndCheckCompletion() == false) {
if (blocking == false) {
return false;
}
}
return true;
}
uint32_t VirtualEvent::getTaskLevel() {
uint32_t taskLevel = 0;
if (cmdQueue != nullptr) {
auto &csr = cmdQueue->getCommandStreamReceiver();
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
if (isStatusCompletedByTermination(&status) == false) {
status = CL_COMPLETE;
}
return Event::setStatus(status);
}
} // namespace OCLRT