File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -258,6 +258,9 @@ configure specific single test execution in the command line:
258
258
* ** gpu-intel-pvc** - tells LIT infra that Intel GPU PVC is present in the
259
259
system. It is developer / CI infra responsibility to make sure that the
260
260
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.
261
264
* ** extra_environment** - comma-separated list of variables with values to be
262
265
added to test environment. Can be also set by LIT_EXTRA_ENVIRONMENT variable
263
266
in cmake.
Original file line number Diff line number Diff line change 157
157
config .available_features .add (
158
158
"matrix-tf32"
159
159
) # 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
161
168
if lit_config .params .get ("matrix" , False ):
162
169
config .available_features .add ("matrix" )
163
170
You can’t perform that action at this time.
0 commit comments