Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions sycl/test-e2e/AsyncAlloc/device/memory_pool.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
// RUN: %{build} -o %t.out
// RUN: %{run} %t.out

// XFAIL: level_zero
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/17772

#include <iostream>
#include <sycl/detail/core.hpp>
#include <sycl/properties/queue_properties.hpp>
Expand Down
2 changes: 2 additions & 0 deletions unified-runtime/source/adapters/level_zero/device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1219,6 +1219,8 @@ ur_result_t urDeviceGetInfo(
return ReturnValue(true);
case UR_DEVICE_INFO_MULTI_DEVICE_COMPILE_SUPPORT_EXP:
return ReturnValue(true);
case UR_DEVICE_INFO_ASYNC_USM_ALLOCATIONS_SUPPORT_EXP:
return ReturnValue(true);
case UR_DEVICE_INFO_CURRENT_CLOCK_THROTTLE_REASONS: {
ur_device_throttle_reasons_flags_t ThrottleReasons = 0;
if (!ParamValue) {
Expand Down
Loading