Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sycl/plugins/level_zero/pi_level_zero.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3695,11 +3695,11 @@ pi_result piEventCreate(pi_context Context, pi_event *RetEvent) {

ze_event_handle_t ZeEvent;
ze_event_desc_t ZeEventDesc = {};
// We have to set the SIGNAL & WAIT flags as HOST scope because the
// We have to set the SIGNAL flag as HOST scope because the
// Level-Zero plugin implementation waits for the events to complete
// on the host.
ZeEventDesc.signal = ZE_EVENT_SCOPE_FLAG_HOST;
ZeEventDesc.wait = ZE_EVENT_SCOPE_FLAG_HOST;
ZeEventDesc.wait = 0;
ZeEventDesc.index = Index;

ZE_CALL(zeEventCreate, (ZeEventPool, &ZeEventDesc, &ZeEvent));
Expand Down