Skip to content

[SYCL][E2E] Add gpu-intel-pvc-vg LIT param #12981

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 2 commits into from
Mar 15, 2024
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
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 @@ -163,7 +163,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