Wake up commandQueue before returning

Change-Id: I87eb5a22c81a9cb807474a960b5987d5fb6c2b86
Этот коммит содержится в:
Saleel Kudchadker
2020-04-03 10:23:36 -07:00
родитель 5a357a795a
Коммит e2def55164
+10 -2
Просмотреть файл
@@ -95,12 +95,20 @@ hipError_t Event::elapsedTime(Event& eStop, float& ms) {
}
hipError_t Event::streamWait(amd::HostQueue* hostQueue, uint flags) {
if ((event_ == nullptr) || (event_->command().queue() == hostQueue)) {
// Effective no-op if event is NULL
if (event_ == nullptr) {
return hipSuccess;
}
amd::ScopedLock lock(lock_);
bool retain = false;
if (event_->command().queue() == hostQueue) {
// Wake up commandQueue thread
if (!event_->notifyCmdQueue()) {
return hipErrorLaunchOutOfResources;
}
return hipSuccess;
}
if (!event_->notifyCmdQueue()) {
return hipErrorLaunchOutOfResources;