Skip to content

Commit daf8037

Browse files
committed
Fix XFAILs on OnlineCOmpiler tests. Skip ESIMD?unified_memory_api tests on PVC
1 parent 2a8567a commit daf8037

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/sycl-post-commit.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,14 @@ jobs:
6262
reset_intel_gpu: false
6363
- name: E2E tests on Intel Ponte Vecchio GPU
6464
runner: '["Linux", "pvc"]'
65+
env: '{"LIT_FILTER_OUT":"ESIMD/unified_memory_api/"}'
6566
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest
6667
image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
6768
target_devices: ext_oneapi_level_zero:gpu;opencl:gpu
6869
extra_lit_opts: -j 100
6970
- name: E2E tests with dev igc on Intel Ponte Vecchio GPU
7071
runner: '["Linux", "pvc"]'
72+
env: '{"LIT_FILTER_OUT":"ESIMD/unified_memory_api/"}'
7173
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:devigc
7274
image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
7375
target_devices: ext_oneapi_level_zero:gpu;opencl:gpu

sycl/test-e2e/OnlineCompiler/online_compiler_L0.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// REQUIRES: level_zero, level_zero_dev_kit, cm-compiler
2-
// XFAIL: gpu && !arch-intel_gpu_pvc || !igc-dev
2+
// XFAIL: gpu && !(arch-intel_gpu_pvc && igc-dev)
33
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16406
44
// RUN: %{build} -Wno-error=deprecated-declarations -DRUN_KERNELS %level_zero_options -o %t.out
55
// RUN: %{run} %t.out

sycl/test-e2e/OnlineCompiler/online_compiler_OpenCL.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// REQUIRES: opencl, opencl_icd, cm-compiler
2-
// XFAIL: !arch-intel_gpu_pvc || !igc-dev
2+
// XFAIL: (gpu && !(arch-intel_gpu_pvc && igc-dev)) || cpu || accelerator
33
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16406
44
// RUN: %{build} -Wno-error=deprecated-declarations -DRUN_KERNELS %opencl_lib -o %t.out
55
// RUN: %{run} %t.out

0 commit comments

Comments
 (0)