2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2018-09-18 15:11:08 +08:00
|
|
|
* Copyright (C) 2017-2018 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"
|
|
|
|
#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;
|
|
|
|
}
|
|
|
|
|
2018-03-21 17:00:49 +08:00
|
|
|
bool 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) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t UserEvent::getTaskLevel() {
|
|
|
|
uint32_t taskLevel = 0;
|
|
|
|
if (ctx != nullptr) {
|
|
|
|
Device *pDevice = ctx->getDevice(0);
|
2018-11-28 16:02:55 +08:00
|
|
|
auto csr = pDevice->getDefaultEngine().commandStreamReceiver;
|
2018-11-22 20:57:10 +08:00
|
|
|
taskLevel = csr->peekTaskLevel();
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
|
|
|
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() {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2018-03-21 17:00:49 +08:00
|
|
|
bool 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) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t VirtualEvent::getTaskLevel() {
|
|
|
|
uint32_t taskLevel = 0;
|
2018-11-22 20:57:10 +08:00
|
|
|
if (cmdQueue != nullptr) {
|
|
|
|
auto &csr = cmdQueue->getCommandStreamReceiver();
|
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
|
2017-12-22 18:44:41 +08:00
|
|
|
if (isStatusCompletedByTermination(&status) == false) {
|
2017-12-21 07:45:38 +08:00
|
|
|
status = CL_COMPLETE;
|
|
|
|
}
|
|
|
|
return Event::setStatus(status);
|
|
|
|
}
|
|
|
|
} // namespace OCLRT
|