Skip to content

Commit 3abd321

Browse files
[SYCL][E2E] Fix E2E tests passing on PVC + L0 after driver uplift (#16551)
partially address #16401
1 parent e0089dc commit 3abd321

File tree

7 files changed

+12
-13
lines changed

7 files changed

+12
-13
lines changed

sycl/test-e2e/DeviceArchitecture/device_architecture_comparison_on_device_aot.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// REQUIRES: arch-intel_gpu_pvc, ocloc
22

3-
// XFAIL: arch-intel_gpu_pvc
3+
// XFAIL: arch-intel_gpu_pvc && opencl && igc-dev
44
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16401
55

66
// RUN: %clangxx -fsycl -fsycl-targets=intel_gpu_pvc %s -o %t.out

sycl/test-e2e/DeviceCodeSplit/grf.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// compiler option
1515

1616
// REQUIRES: arch-intel_gpu_pvc
17-
// XFAIL: arch-intel_gpu_pvc
17+
// XFAIL: arch-intel_gpu_pvc && opencl
1818
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16401
1919

2020
// RUN: %{build} -Wno-error=deprecated-declarations -o %t1.out

sycl/test-e2e/Matrix/joint_matrix_bf16_fill_k_cache_arg_dim.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
// Waiting for the commit in IGC to be pulled into the driver to resolve the
1616
// test.
17-
// XFAIL: (!igc-dev || gpu-intel-dg2) && run-mode
17+
// XFAIL: gpu-intel-dg2 && run-mode
1818
// XFAIL-TRACKER: GSD-10510
1919

2020
#include "common.hpp"

sycl/test-e2e/Matrix/joint_matrix_bf16_fill_k_cache_runtime_dim.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
// Waiting for the commit in IGC to be pulled into the driver to resolve the
1616
// test.
17-
// XFAIL: (!igc-dev || gpu-intel-dg2) && run-mode
17+
// XFAIL: gpu-intel-dg2 && run-mode
1818
// XFAIL-TRACKER: GSD-10510
1919

2020
#include "common.hpp"

sycl/test-e2e/MemorySanitizer/lit.local.cfg

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# TRACKER: https://github.com/intel/llvm/issues/16184
2-
# TRACKER for PVC: https://github.com/intel/llvm/issues/16401
3-
#has_arch_gpu_intel_pvc = any('arch-intel_gpu_pvc' in T for T in config.sycl_dev_features.values())
4-
#if not has_arch_gpu_intel_pvc:
5-
config.unsupported_features += ['gpu']
2+
has_arch_gpu_intel_pvc = any('arch-intel_gpu_pvc' in T for T in config.sycl_dev_features.values())
3+
if not has_arch_gpu_intel_pvc:
4+
config.unsupported_features += ['gpu']
5+
else:
6+
# TRACKER for PVC + igc-dev: https://github.com/intel/llvm/issues/16401
7+
config.unsupported_features += ['igc-dev']
68

79
config.substitutions.append(
810
("%device_msan_flags", "-Xarch_device -fsanitize=memory")

sycl/test-e2e/Regression/multithread_write_accessor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %{build} -o %t.out %threads_lib
22
// RUN: %{run} %t.out
33

4-
// XFAIL: arch-intel_gpu_pvc
4+
// XFAIL: arch-intel_gpu_pvc && opencl
55
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16401
66

77
#include <sycl/detail/core.hpp>

sycl/test-e2e/syclcompat/launch/launch_policy_lmem.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,9 @@
2323
// RUN: %{build} -fsycl-device-code-split=per_kernel -o %t.out
2424
// RUN: %{run} %t.out
2525

26-
// UNSUPPORTED: linux && opencl && (gpu-intel-gen12 || gpu-intel-dg2)
26+
// UNSUPPORTED: linux && opencl && (gpu-intel-gen12 || gpu-intel-dg2 || arch-intel_gpu_pvc)
2727
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/15275
2828

29-
// XFAIL: arch-intel_gpu_pvc
30-
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16401
31-
3229
#include <sycl/detail/core.hpp>
3330
#include <sycl/ext/oneapi/properties/properties.hpp>
3431
#include <sycl/group_barrier.hpp>

0 commit comments

Comments
 (0)