File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 46
46
description : Tests to filter out completely
47
47
type : string
48
48
required : false
49
-
49
+ extra_lit_flags :
50
+ description : Additional llvm-lit flags to use
51
+ type : string
52
+ required : false
53
+
50
54
permissions :
51
55
contents : read
52
56
pull-requests : write
62
66
str_name : " ${{inputs.str_name}}" ,
63
67
prefix : " ${{inputs.prefix}}" ,
64
68
config : " ${{inputs.config}}" ,
65
- unit : " ${{inputs.unit}}" }
69
+ unit : " ${{inputs.unit}}" ,
70
+ extra_lit_flags : " ${{inputs.extra_lit_flags}}" },
66
71
]
67
72
build_type : [Release]
68
73
compiler : [{c: clang, cxx: clang++}]
@@ -167,6 +172,7 @@ jobs:
167
172
-DSYCL_TEST_E2E_TARGETS="${{matrix.adapter.prefix}}${{matrix.adapter.str_name}}:${{matrix.adapter.unit}}"
168
173
-DCMAKE_CXX_COMPILER="$(which clang++)"
169
174
-DLLVM_LIT="${{github.workspace}}/sycl-repo/llvm/utils/lit/lit.py"
175
+ -DSYCL_E2E_TESTS_LIT_FLAGS="-sv;${{matrix.adapter.extra_lit_flags}}"
170
176
171
177
- name : Set test filters for L0
172
178
if : matrix.adapter.name == 'L0'
Original file line number Diff line number Diff line change 31
31
xfail : " ESIMD/preemption.cpp;syclcompat/atomic/atomic_class.cpp;ProgramManager/uneven_kernel_split.cpp;Plugin/level_zero_ext_intel_queue_index.cpp;Plugin/level_zero_ext_intel_cslice.cpp;Matrix/joint_matrix_rowmajorA_rowmajorB.cpp;Matrix/element_wise_ops.cpp;Matrix/element_wise_all_ops.cpp;Matrix/SG32/element_wise_all_ops.cpp"
32
32
# Flaky tests
33
33
filter_out : " GroupAlgorithm/root_group.cpp|Basic/exceptions-SYCL-2020.cpp|Graph/UnsupportedDevice/device_query.cpp|Graph/RecordReplay/exception_inconsistent_contexts.cpp"
34
+ # These runners by default spawn upwards of 260 workers. That's too much for the GPU.
35
+ # We also add a time out just in case some test hangs
36
+ extra_lit_flags : " -j 50;--max-time 600"
You can’t perform that action at this time.
0 commit comments