Skip to content

Commit 4c22f5c

Browse files
authored
Merge pull request oneapi-src#1445 from raiyanla/enable-in-order
[L0] Enable default support for L0 in-order lists
2 parents c98fdbc + f67dc0c commit 4c22f5c

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
@@ -1074,7 +1074,7 @@ bool ur_device_handle_t_::useDriverInOrderLists() {
10741074
static const bool UseDriverInOrderLists = [] {
10751075
const char *UrRet = std::getenv("UR_L0_USE_DRIVER_INORDER_LISTS");
10761076
if (!UrRet)
1077-
return false;
1077+
return true;
10781078
return std::atoi(UrRet) != 0;
10791079
}();
10801080

0 commit comments

Comments
 (0)