File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
unified-runtime/source/adapters/level_zero Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 1
1
// RUN: %{build} -o %t.out
2
2
// RUN: %{run} %t.out
3
3
4
+ // XFAIL: level_zero
5
+ // XFAIL-TRACKER: https://github.com/intel/llvm/issues/17772
6
+
4
7
#include < iostream>
5
8
#include < sycl/detail/core.hpp>
6
9
#include < sycl/properties/queue_properties.hpp>
Original file line number Diff line number Diff line change 1
1
config.required_features += [' aspect-ext_oneapi_async_memory_alloc' ]
2
+ # V2 adapter does not support async alloc api yet
3
+ config.unsupported_features += [' level_zero_v2_adapter' ]
Original file line number Diff line number Diff line change @@ -1227,6 +1227,8 @@ ur_result_t urDeviceGetInfo(
1227
1227
return ReturnValue (true );
1228
1228
case UR_DEVICE_INFO_MULTI_DEVICE_COMPILE_SUPPORT_EXP:
1229
1229
return ReturnValue (true );
1230
+ case UR_DEVICE_INFO_ASYNC_USM_ALLOCATIONS_SUPPORT_EXP:
1231
+ return ReturnValue (true );
1230
1232
case UR_DEVICE_INFO_CURRENT_CLOCK_THROTTLE_REASONS: {
1231
1233
ur_device_throttle_reasons_flags_t ThrottleReasons = 0 ;
1232
1234
if (!ParamValue) {
You can’t perform that action at this time.
0 commit comments