Skip to content

Commit f6f6495

Browse files
committed
Remove newly aded gpu-intel-pvc feature
1 parent 2f93761 commit f6f6495

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ if 'gpu-intel-gen9' in config.available_features and platform.system() == 'Windo
1111
# so there's no difference in coverage.
1212
# We should investigate why OCL fails separately.
1313

14-
# GPUs to disable ESIMD tests for OpenCL backend.
15-
gpus_requiring_l0 = ['gpu-intel-dg2', 'gpu-intel-pvc']
14+
# Check if any device has arch-intel_gpu_pvc
15+
has_arch_gpu_intel_pvc = any('arch-intel_gpu_pvc' in T for T in config.sycl_dev_features.values())
1616

17-
if set(gpus_requiring_l0) & set(config.available_features):
17+
if 'gpu-intel-dg2' in config.available_features or has_arch_gpu_intel_pvc:
1818
config.required_features += ['level_zero']
1919

2020
# TODO: Remove this once the warnings are resolved

sycl/test-e2e/lit.cfg.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@
159159
config.available_features.add(
160160
"matrix-tf32"
161161
) # PVC implies the support of TF32 matrix
162-
config.available_features.add("gpu-intel-pvc")
163162
if lit_config.params.get("gpu-intel-pvc-vg", False):
164163
config.available_features.add("gpu-intel-pvc-vg")
165164
config.available_features.add(

0 commit comments

Comments
 (0)