diff --git a/onnxscript/tests/function_libs/torch_aten/ops_correctness_test.py b/onnxscript/tests/function_libs/torch_aten/ops_correctness_test.py index c916283099..63cdd72ccf 100644 --- a/onnxscript/tests/function_libs/torch_aten/ops_correctness_test.py +++ b/onnxscript/tests/function_libs/torch_aten/ops_correctness_test.py @@ -821,6 +821,11 @@ def _where_input_wrangler( matcher=lambda sample: not (sample.args[0][0].dtype == torch.bool), reason="this Aten overload only support tensor(bool) as args", ), + skip( + "matmul", + matcher=lambda sample: torch.numel(sample.input) == 0, + reason="values of matmul of [m, 0] and [0, n] matrices are undefined", + ), skip( "min", # aten_mean matcher=lambda sample: len(sample.args) > 0,