File tree 3 files changed +11
-2
lines changed
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ jobs:
110
110
- name : E2E tests on Intel Ponte Vecchio GPU
111
111
runner : ' ["Linux", "pvc"]'
112
112
image_options : -u 1001 --device=/dev/dri -v /dev/dri/by-path:/dev/dri/by-path --privileged --cap-add SYS_ADMIN
113
- target_devices : level_zero:gpu;opencl:gpu
113
+ target_devices : level_zero:gpu;opencl:gpu;level_zero_v2:gpu
114
114
- name : Dev IGC on Intel Ponte Vecchio GPU
115
115
runner : ' ["Linux", "pvc"]'
116
116
image : ghcr.io/intel/llvm/ubuntu2404_intel_drivers:devigc
@@ -120,7 +120,7 @@ jobs:
120
120
- name : Intel Battlemage Graphics
121
121
runner : ' ["Linux", "bmg"]'
122
122
image_options : -u 1001 --device=/dev/dri -v /dev/dri/by-path:/dev/dri/by-path --privileged --cap-add SYS_ADMIN
123
- target_devices : level_zero:gpu
123
+ target_devices : level_zero:gpu;level_zero_v2:gpu
124
124
- name : SPIR-V Backend / Intel Battlemage Graphics
125
125
runner : ' ["Linux", "bmg"]'
126
126
image_options : -u 1001 --device=/dev/dri -v /dev/dri/by-path:/dev/dri/by-path --privileged --cap-add SYS_ADMIN
Original file line number Diff line number Diff line change 14
14
// UNSUPPORTED: cuda
15
15
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/14053
16
16
17
+ // UNSUPPORTED: level_zero_v2_adapter
18
+ // UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17760
19
+
17
20
#include < sycl/detail/core.hpp>
18
21
#include < sycl/ext/oneapi/experimental/profiling_tag.hpp>
19
22
Original file line number Diff line number Diff line change @@ -333,6 +333,12 @@ def get_extra_env(sycl_devices):
333
333
dev_features = test .config .sycl_dev_features [full_dev_name ]
334
334
if "level_zero_v2_adapter" in dev_features :
335
335
expanded += " env UR_LOADER_USE_LEVEL_ZERO_V2=1"
336
+ if any (
337
+ "pvc" in feature or "gen12" in feature or "bmg" in feature
338
+ for feature in test .config .sycl_dev_features [full_dev_name ]
339
+ ):
340
+ # TODO: For those platforms, devices using copy offload results in test timeouts
341
+ expanded += " env UR_L0_V2_FORCE_DISABLE_COPY_OFFLOAD=1"
336
342
337
343
expanded += " ONEAPI_DEVICE_SELECTOR={} {}" .format (
338
344
parsed_dev_name , test .config .run_launcher
You can’t perform that action at this time.
0 commit comments