Skip to content

Commit 0714d8c

Browse files
committed
turn off tests for pvc t1
1 parent f45ee77 commit 0714d8c

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

sycl/test-e2e/Plugin/level_zero_ext_intel_cslice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// REQUIRES: level_zero
22
// REQUIRES: aspect-ext_intel_device_id
33
// https://github.com/intel/llvm/issues/14826
4-
// XFAIL: arch-intel_gpu_pvc
4+
// XFAIL: gpu-intel-pvc-1T
55

66
// RUN: %{build} -Wno-error=deprecated-declarations -o %t.out
77

sycl/test-e2e/Plugin/level_zero_ext_intel_queue_index.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// REQUIRES: level_zero
33

44
// https://github.com/intel/llvm/issues/14826
5-
// XFAIL: arch-intel_gpu_pvc
5+
// XFAIL: gpu-intel-pvc-1T
66
// RUN: %{build} -o %t.out
77

88
// TODO: at this time PVC 1T systems are not correctly supporting CSLICE

sycl/test-e2e/lit.cfg.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,8 +430,6 @@ def open_check_file(file_name):
430430
)
431431
sp = subprocess.check_output(cmd, text=True, shell=True)
432432
for line in sp.splitlines():
433-
if "Intel(R) Data Center GPU Max 1100" in line:
434-
config.available_features.add("gpu-intel-pvc-1T")
435433
if "gfx90a" in line:
436434
config.available_features.add("gpu-amd-gfx90a")
437435
if not line.startswith("["):
@@ -720,6 +718,10 @@ def open_check_file(file_name):
720718
# str.removeprefix isn't universally available...
721719
sg_sizes_str = line.strip().replace("info::device::sub_group_sizes: ", "")
722720
dev_sg_sizes.append(sg_sizes_str.strip().split(" "))
721+
if re.match(r" *UUID*", line):
722+
_, uuid = line.strip().split(":", 1)
723+
if uuid.strip() == "1341282181147000410000000":
724+
config.available_features.add("gpu-intel-pvc-1T")
723725
if re.match(r" *Architecture:", line):
724726
_, architecture = line.strip().split(":", 1)
725727
architectures.add(architecture.strip())

0 commit comments

Comments
 (0)