@@ -248,6 +248,25 @@ def run_node(cls, node, inputs, device=None, outputs_info=None, **kwargs):
248248)
249249
250250if onnx_opset_version () <= 25 :
251+ exc = "|" .join (
252+ [
253+ "batchnorm_.*_training" ,
254+ "convinteger_with_padding" ,
255+ "rms_normalization" ,
256+ "rotary_embedding_3d" ,
257+ "rotary_embedding" ,
258+ # cuda,
259+ "test_Conv3d_dilated.*_cuda" ,
260+ "test_reduce_.*_empty_set_cuda" ,
261+ "test_reduce_sum_square_.*_expanded_cuda" ,
262+ "test_reduce_l1_.*_expanded_cuda" ,
263+ "test_reduce_l2_.*_expanded_cuda" ,
264+ "test_reduce_log_sum_.*_expanded_cuda" ,
265+ ]
266+ )
267+ backend_test .exclude (f"({ exc } )" )
268+
269+ if onnx_opset_version () <= 26 :
251270 backend_test .exclude (
252271 "(deform_conv"
253272 "|gru"
@@ -261,36 +280,25 @@ def run_node(cls, node, inputs, device=None, outputs_info=None, **kwargs):
261280 "|layer_normalization.*expanded"
262281 "|layer_normalization.*expanded"
263282 "|affine_grid.*expanded"
283+ "|test_attention_4d_diff_heads_mask4d_padded_kv.*"
284+ "|test_convinteger_with_padding"
264285 "|test_rnn_seq"
265286 "|test_roialign_aligned_false"
266287 "|test_roialign_aligned_true"
267288 "|test_roialign_mode_max"
289+ "|test_rotary_embedding_no_position_ids_rotary_dim.*"
290+ "|test_rotary_embedding_with_interleaved_rotary_dim.*"
291+ "|test_rotary_embedding_with_rotary_dim*"
268292 "|test_simple_rnn_batchwise"
269293 "|test_simple_rnn_defaults"
270294 "|test_simple_rnn_with_initial_bias"
295+ "|test_swish*"
296+ "|test_tensorscatter*"
297+ "|test_top_k*"
271298 ")"
272299 )
273300
274301
275- if onnx_opset_version () <= 25 :
276- exc = "|" .join (
277- [
278- "batchnorm_.*_training" ,
279- "convinteger_with_padding" ,
280- "rms_normalization" ,
281- "rotary_embedding_3d" ,
282- "rotary_embedding" ,
283- # cuda,
284- "test_Conv3d_dilated.*_cuda" ,
285- "test_reduce_.*_empty_set_cuda" ,
286- "test_reduce_sum_square_.*_expanded_cuda" ,
287- "test_reduce_l1_.*_expanded_cuda" ,
288- "test_reduce_l2_.*_expanded_cuda" ,
289- "test_reduce_log_sum_.*_expanded_cuda" ,
290- ]
291- )
292- backend_test .exclude (f"({ exc } )" )
293-
294302if pv .Version (onnxruntime .__version__ ) <= pv .Version ("1.24" ):
295303 backend_test .exclude ("(test_attention_4d_with|test_attention_4d_gqa)" )
296304
0 commit comments