Skip to content

[SYCL] Screen tests on PVC-1T systems #13837

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions sycl/test-e2e/Plugin/level_zero_ext_intel_cslice.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
// REQUIRES: level_zero
// REQUIRES: aspect-ext_intel_device_id
// UNSUPPORTED: gpu-intel-pvc-1T

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

// TODO: at this time PVC 1T systems are not correctly supporting CSLICE
// affinity partitioning So the test is marked as UNSUPPORTED until that is
// fixed.

// TODO - at this time ZEX_NUMBER_OF_CCS is not working with FLAT hierachy,
// which is the new default on PVC. Once it is supported, we'll test on both.
// In the interim, these are the environment vars that must be set to get cslice
Expand Down
5 changes: 5 additions & 0 deletions sycl/test-e2e/Plugin/level_zero_ext_intel_queue_index.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
// REQUIRES: aspect-ext_intel_device_id
// REQUIRES: level_zero
// UNSUPPORTED: gpu-intel-pvc-1T
// RUN: %{build} -o %t.out

// TODO: at this time PVC 1T systems are not correctly supporting CSLICE
// affinity partitioning So the test is marked as UNSUPPORTED until that is
// fixed.

// TODO - at this time ZEX_NUMBER_OF_CCS is not working with FLAT hierachy,
// which is the new default on PVC. Once it is supported, we'll test on both.
// In the interim, these are the environment vars that must be set to get cslice
Expand Down
6 changes: 6 additions & 0 deletions sycl/test-e2e/Plugin/level_zero_sub_sub_device.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
// REQUIRES: gpu-intel-pvc, level_zero

// UNSUPPORTED: gpu-intel-pvc-1T

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

// TODO - at this time PVC 1T systems aren't correctly supporting affinity
// subdomain partitioning so this test is marked as UNSUPPORTED on those
// systems.

// TODO - at this time ZEX_NUMBER_OF_CCS is not working with FLAT hierachy,
// which is the new default on PVC. Once it is supported, we'll test on both.
// In the interim, these are the environment vars that must be used in
Expand Down
2 changes: 2 additions & 0 deletions sycl/test-e2e/lit.cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,8 @@
)
sp = subprocess.check_output(cmd, text=True, shell=True)
for line in sp.splitlines():
if "Intel(R) Data Center GPU Max 1100" in line:
config.available_features.add("gpu-intel-pvc-1T")
if "gfx90a" in line:
config.available_features.add("gpu-amd-gfx90a")
if not line.startswith("["):
Expand Down
Loading