Skip to content

Commit be35755

Browse files
author
Jaime Arteaga
authored
[SYCL][UR][L0] Correct default for SYCL_PI_LEVEL_ZERO_FILTER_EVENT_WAIT_LIST (intel#10319)
As previously committed in: intel@dbde93f Signed-off-by: Jaime Arteaga <[email protected]>
1 parent 59fc837 commit be35755

File tree

1 file changed

+1
-1
lines changed
  • sycl/plugins/unified_runtime/ur/adapters/level_zero

1 file changed

+1
-1
lines changed

sycl/plugins/unified_runtime/ur/adapters/level_zero/event.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const bool ReuseDiscardedEvents = [] {
5757

5858
const bool FilterEventWaitList = [] {
5959
const char *Ret = std::getenv("SYCL_PI_LEVEL_ZERO_FILTER_EVENT_WAIT_LIST");
60-
const bool RetVal = Ret ? std::stoi(Ret) : 1;
60+
const bool RetVal = Ret ? std::stoi(Ret) : 0;
6161
return RetVal;
6262
}();
6363

0 commit comments

Comments
 (0)