Skip to content

Commit

Permalink
Merge pull request #1591 from nrspruit/disable_driver_in_order_lists_…
Browse files Browse the repository at this point in the history
…default

[L0] Disable Usage of Driver In order Lists by default
  • Loading branch information
kbenzie committed May 9, 2024
1 parent b77e6cf commit 7195122
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/adapters/level_zero/device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1078,7 +1078,7 @@ bool ur_device_handle_t_::useDriverInOrderLists() {
static const bool UseDriverInOrderLists = [] {
const char *UrRet = std::getenv("UR_L0_USE_DRIVER_INORDER_LISTS");
if (!UrRet)
return true;
return false;
return std::atoi(UrRet) != 0;
}();

Expand Down

0 comments on commit 7195122

Please sign in to comment.