Skip to content

Commit 0b405a1

Browse files
committed
[L0] Disable Usage of Driver In order Lists by default
- Until usage of Driver In Order lists can be confirmed stable, disable the usage of the driver in order lists by default. Signed-off-by: Neil R. Spruit <neil.r.spruit@intel.com>
1 parent 6d5d84c commit 0b405a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/adapters/level_zero/device.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,7 @@ bool ur_device_handle_t_::useDriverInOrderLists() {
10851085
static const bool UseDriverInOrderLists = [] {
10861086
const char *UrRet = std::getenv("UR_L0_USE_DRIVER_INORDER_LISTS");
10871087
if (!UrRet)
1088-
return true;
1088+
return false;
10891089
return std::atoi(UrRet) != 0;
10901090
}();
10911091

0 commit comments

Comments
 (0)