Skip to content

Commit 1e1f577

Browse files
authored
Merge pull request #1591 from nrspruit/disable_driver_in_order_lists_default
[L0] Disable Usage of Driver In order Lists by default
2 parents dd212f3 + 0b405a1 commit 1e1f577

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)