Skip to content

Commit

Permalink
[SYCL][UR][L0] Correct default for SYCL_PI_LEVEL_ZERO_FILTER_EVENT_WA…
Browse files Browse the repository at this point in the history
…IT_LIST (#10319)

As previously committed in:


dbde93f

Signed-off-by: Jaime Arteaga <[email protected]>
  • Loading branch information
Jaime Arteaga authored Jul 19, 2023
1 parent 59fc837 commit be35755
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const bool ReuseDiscardedEvents = [] {

const bool FilterEventWaitList = [] {
const char *Ret = std::getenv("SYCL_PI_LEVEL_ZERO_FILTER_EVENT_WAIT_LIST");
const bool RetVal = Ret ? std::stoi(Ret) : 1;
const bool RetVal = Ret ? std::stoi(Ret) : 0;
return RetVal;
}();

Expand Down

0 comments on commit be35755

Please sign in to comment.