Skip to content

Commit 14be71d

Browse files
committed
fix syntax
1 parent 219eddd commit 14be71d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

onnxscript/backend/onnx_export_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ def skip(pattern: str | Pattern, reason: str, *, condition: bool = True):
102102
skip("nonmaxsuppression", "cannot import module"),
103103
skip("reduce_l2_do_not_keepdims", "could not convert string to float: 'o'"),
104104
skip("reduce_log_sum_exp_keepdims", "cannot import module"),
105+
skip("logsoftmax_default_axis", "cannot import module"),
105106
skip("test_sub", "cannot import module"),
106107
)
107108

tests/function_libs/torch_lib/ops_test_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1586,7 +1586,7 @@ def _where_input_wrangler(
15861586
core_ops.aten_layer_norm,
15871587
tolerance={torch.float32: (3.7e-5, 1.8e-4)},
15881588
).xfail(
1589-
dtypes=(torch.int64,)
1589+
dtypes=(torch.int64,),
15901590
reason="fixme: ORT `LayerNormKernelImpl` not implemented for int64",
15911591
)
15921592
).skip(

0 commit comments

Comments
 (0)