This repository was archived by the owner on Mar 28, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -149,6 +149,7 @@ unavailable.
149
149
* ** aoc** , ** ocloc** , ** opencl-aot** - Specific AOT tool availability;
150
150
* ** level_zero_dev_kit** - Level_Zero headers and libraries availability;
151
151
* ** gpu-intel-dg1** - Intel GPU DG1 availability;
152
+ * ** gpu-intel-pvc** - Intel GPU PVC availability;
152
153
* ** dump_ir** : - compiler can / cannot dump IR;
153
154
154
155
## llvm-lit parameters
@@ -171,6 +172,9 @@ configure specific single test execution in the command line:
171
172
device selector to ensure that. Use SYCL_DEVICE_ALLOWLIST or
172
173
SYCL_DEVICE_FILTER to get proper configuration (see
173
174
[ EnvironmentVariables.md] ( https://github.com/intel/llvm/blob/sycl/sycl/doc/EnvironmentVariables.md ) );
175
+ * ** gpu-intel-pvc** - tells LIT infra that Intel GPU PVC is present in the
176
+ system. It is developer / CI infra responsibility to make sure that the
177
+ device is available in the system.
174
178
* ** extra_environment** - comma-separated list of variables with values to be
175
179
added to test environment. Can be also set by LIT_EXTRA_ENVIRONMENT variable
176
180
in cmake.
Original file line number Diff line number Diff line change 97
97
if lit_config .params .get ('gpu-intel-dg1' , False ):
98
98
config .available_features .add ('gpu-intel-dg1' )
99
99
100
+ if lit_config .params .get ('gpu-intel-pvc' , False ):
101
+ config .available_features .add ('gpu-intel-pvc' )
102
+
100
103
if lit_config .params .get ('matrix' , False ):
101
104
config .available_features .add ('matrix' )
102
105
You can’t perform that action at this time.
0 commit comments