We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 227fbfb + f9f0df3 commit 0f47e44Copy full SHA for 0f47e44
SYCL/lit.cfg.py
@@ -100,6 +100,9 @@
100
if lit_config.params.get('matrix', False):
101
config.available_features.add('matrix')
102
103
+if lit_config.params.get('matrix-pvc', False):
104
+ config.available_features.add('matrix-pvc')
105
+
106
#support for LIT parameter ze_debug<num>
107
if lit_config.params.get('ze_debug'):
108
config.ze_debug = lit_config.params.get('ze_debug')
llvm_test_suite_sycl.pl
@@ -535,6 +535,7 @@ sub do_run
535
$matrix = "-Dmatrix=1";
536
$jobset = "-j 1";
537
} elsif ( is_pvc() ) {
538
+ $matrix = "-Dmatrix-pvc=1";
539
$timeset = "--timeout 1800";
540
$jobset = "";
541
}
0 commit comments