Skip to content

Commit

Permalink
[SYCL][E2E] Add gpu-intel-pvc-vg LIT param (#12981)
Browse files Browse the repository at this point in the history
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 <nick.sarnie@intel.com>
  • Loading branch information
sarnex committed Mar 15, 2024
1 parent d4a9254 commit 1953dcf
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
3 changes: 3 additions & 0 deletions sycl/test-e2e/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,9 @@ configure specific single test execution in the command line:
* **gpu-intel-pvc** - tells LIT infra that Intel GPU PVC is present in the
system. It is developer / CI infra responsibility to make sure that the
device is available in the system.
* **gpu-intel-pvc-vg** - tells LIT infra that Intel GPU PVC-VG is present in the
system. It is developer / CI infra responsibility to make sure that the
device is available in the system.
* **extra_environment** - comma-separated list of variables with values to be
added to test environment. Can be also set by LIT_EXTRA_ENVIRONMENT variable
in cmake.
Expand Down
9 changes: 8 additions & 1 deletion sycl/test-e2e/lit.cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,14 @@
config.available_features.add(
"matrix-tf32"
) # PVC implies the support of TF32 matrix

if lit_config.params.get("gpu-intel-pvc-vg", False):
config.available_features.add("gpu-intel-pvc-vg")
config.available_features.add(
"matrix-fp16"
) # PVC-VG implies the support of FP16 matrix
config.available_features.add(
"matrix-tf32"
) # PVC-VG implies the support of TF32 matrix
if lit_config.params.get("matrix", False):
config.available_features.add("matrix")

Expand Down

0 comments on commit 1953dcf

Please sign in to comment.