Skip to content

Commit 7952e5a

Browse files
[SYCL] Screen tests on PVC-1T systems (#13837)
PVC 1T systems have some issues with partitioning. Disabling these tests on those systems while awaiting driver fixes.
1 parent f739a6d commit 7952e5a

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed

sycl/test-e2e/Plugin/level_zero_ext_intel_cslice.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
// REQUIRES: level_zero
22
// REQUIRES: aspect-ext_intel_device_id
3+
// UNSUPPORTED: gpu-intel-pvc-1T
34

45
// RUN: %{build} -o %t.out
56

7+
// TODO: at this time PVC 1T systems are not correctly supporting CSLICE
8+
// affinity partitioning So the test is marked as UNSUPPORTED until that is
9+
// fixed.
10+
611
// TODO - at this time ZEX_NUMBER_OF_CCS is not working with FLAT hierachy,
712
// which is the new default on PVC. Once it is supported, we'll test on both.
813
// In the interim, these are the environment vars that must be set to get cslice

sycl/test-e2e/Plugin/level_zero_ext_intel_queue_index.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
// REQUIRES: aspect-ext_intel_device_id
22
// REQUIRES: level_zero
3+
// UNSUPPORTED: gpu-intel-pvc-1T
34
// RUN: %{build} -o %t.out
45

6+
// TODO: at this time PVC 1T systems are not correctly supporting CSLICE
7+
// affinity partitioning So the test is marked as UNSUPPORTED until that is
8+
// fixed.
9+
510
// TODO - at this time ZEX_NUMBER_OF_CCS is not working with FLAT hierachy,
611
// which is the new default on PVC. Once it is supported, we'll test on both.
712
// In the interim, these are the environment vars that must be set to get cslice

sycl/test-e2e/Plugin/level_zero_sub_sub_device.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
// REQUIRES: gpu-intel-pvc, level_zero
22

3+
// UNSUPPORTED: gpu-intel-pvc-1T
4+
35
// RUN: %{build} %level_zero_options -o %t.out
46

7+
// TODO - at this time PVC 1T systems aren't correctly supporting affinity
8+
// subdomain partitioning so this test is marked as UNSUPPORTED on those
9+
// systems.
10+
511
// TODO - at this time ZEX_NUMBER_OF_CCS is not working with FLAT hierachy,
612
// which is the new default on PVC. Once it is supported, we'll test on both.
713
// In the interim, these are the environment vars that must be used in

sycl/test-e2e/lit.cfg.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,8 @@
422422
)
423423
sp = subprocess.check_output(cmd, text=True, shell=True)
424424
for line in sp.splitlines():
425+
if "Intel(R) Data Center GPU Max 1100" in line:
426+
config.available_features.add("gpu-intel-pvc-1T")
425427
if "gfx90a" in line:
426428
config.available_features.add("gpu-amd-gfx90a")
427429
if not line.startswith("["):

0 commit comments

Comments
 (0)