diff --git a/projects/clr/hipamd/vdi/hip_event.cpp b/projects/clr/hipamd/vdi/hip_event.cpp index 5c9d570ea1..03498c47cf 100644 --- a/projects/clr/hipamd/vdi/hip_event.cpp +++ b/projects/clr/hipamd/vdi/hip_event.cpp @@ -25,7 +25,9 @@ namespace hip { bool Event::ready() { - event_->notifyCmdQueue(); + if (event_->status() != CL_COMPLETE) { + event_->notifyCmdQueue(); + } return (event_->status() == CL_COMPLETE); }