Skip to content

Commit 1953dcf

Browse files
authored
[SYCL][E2E] Add gpu-intel-pvc-vg LIT param (#12981)
I chose `gpu-intel-pvc-vg` instead of `gpu-intel-pvcvg` to match the device_arch [here](https://github.com/intel/llvm/blob/a0cdd9f741c70e7586d7638b88e7b750eb2d540c/sycl/doc/UsersManual.md?plain=1#L51). --------- Signed-off-by: Sarnie, Nick <[email protected]>
1 parent d4a9254 commit 1953dcf

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

sycl/test-e2e/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,9 @@ configure specific single test execution in the command line:
258258
* **gpu-intel-pvc** - tells LIT infra that Intel GPU PVC is present in the
259259
system. It is developer / CI infra responsibility to make sure that the
260260
device is available in the system.
261+
* **gpu-intel-pvc-vg** - tells LIT infra that Intel GPU PVC-VG is present in the
262+
system. It is developer / CI infra responsibility to make sure that the
263+
device is available in the system.
261264
* **extra_environment** - comma-separated list of variables with values to be
262265
added to test environment. Can be also set by LIT_EXTRA_ENVIRONMENT variable
263266
in cmake.

sycl/test-e2e/lit.cfg.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,14 @@
157157
config.available_features.add(
158158
"matrix-tf32"
159159
) # PVC implies the support of TF32 matrix
160-
160+
if lit_config.params.get("gpu-intel-pvc-vg", False):
161+
config.available_features.add("gpu-intel-pvc-vg")
162+
config.available_features.add(
163+
"matrix-fp16"
164+
) # PVC-VG implies the support of FP16 matrix
165+
config.available_features.add(
166+
"matrix-tf32"
167+
) # PVC-VG implies the support of TF32 matrix
161168
if lit_config.params.get("matrix", False):
162169
config.available_features.add("matrix")
163170

0 commit comments

Comments
 (0)