Skip to content

Commit

Permalink
[L0] Enable default support for L0 in-order lists
Browse files Browse the repository at this point in the history
Signed-off-by: Raiyan Latif <raiyan.latif@intel.com>
  • Loading branch information
raiyanla committed Mar 14, 2024
1 parent bb589ca commit f67dc0c
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 @@ -1060,7 +1060,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 false;
return true;
return std::atoi(UrRet) != 0;
}();

Expand Down

0 comments on commit f67dc0c

Please sign in to comment.