Skip to content

Commit b454f3a

Browse files
committed
skip
1 parent c126453 commit b454f3a

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

_unittests/ut_reference/test_backend_onnxruntime_evaluator.py

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,24 @@ def run_node(cls, node, inputs, device=None, outputs_info=None, **kwargs):
269269

270270

271271
if onnx_opset_version() <= 25:
272-
backend_test.exclude("(rms_normalization|convinteger_with_padding_cpu)")
272+
exc = "|".join(
273+
[
274+
"batchnorm_.*_training",
275+
"convinteger_with_padding",
276+
"rms_normalization",
277+
"rotary_embedding_3d",
278+
"rotary_embedding_with",
279+
"rotary_embedding_no_position_ids",
280+
# cuda,
281+
"test_Conv3d_dilated.*_cuda",
282+
"test_reduce_.*_empty_set_cuda",
283+
"test_reduce_sum_square_.*_expanded_cuda",
284+
"test_reduce_l1_.*_expanded_cuda",
285+
"test_reduce_l2_.*_expanded_cuda",
286+
"test_reduce_log_sum_.*_expanded_cuda",
287+
]
288+
)
289+
backend_test.exclude(f"({exc})")
273290

274291
# import all test cases at global scope to make them visible to python.unittest
275292
globals().update(backend_test.test_cases)

0 commit comments

Comments
 (0)