2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2020-01-23 18:57:37 +08:00
|
|
|
* Copyright (C) 2017-2020 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-21 22:35:08 +08:00
|
|
|
#include "core/command_stream/command_stream_receiver.h"
|
2020-02-07 01:57:00 +08:00
|
|
|
#include "core/device/device.h"
|
2020-02-22 16:28:27 +08:00
|
|
|
|
|
|
|
#include "command_queue/command_queue.h"
|
|
|
|
#include "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-01-23 18:57:37 +08:00
|
|
|
: Event(ctx, nullptr, CL_COMMAND_USER, CompletionStamp::levelNotReady, CompletionStamp::levelNotReady) {
|
2017-12-21 07:45:38 +08:00
|
|
|
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() {
|
2018-12-04 21:36:08 +08:00
|
|
|
if (peekExecutionStatus() == CL_COMPLETE) {
|
|
|
|
return 0;
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
2020-01-23 18:57:37 +08:00
|
|
|
return CompletionStamp::levelNotReady;
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool UserEvent::isInitialEventStatus() const {
|
|
|
|
return executionStatus == CL_QUEUED;
|
|
|
|
}
|
|
|
|
|
|
|
|
VirtualEvent::VirtualEvent(CommandQueue *cmdQ, Context *ctx)
|
2020-01-23 18:57:37 +08:00
|
|
|
: Event(ctx, cmdQ, -1, CompletionStamp::levelNotReady, CompletionStamp::levelNotReady) {
|
2017-12-21 07:45:38 +08:00
|
|
|
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) {
|
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
|