We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dd4ceb commit 6ba6f52Copy full SHA for 6ba6f52
tests/function_libs/torch_lib/ops_test_data.py
@@ -766,9 +766,14 @@ def _where_input_wrangler(
766
"linspace",
767
core_ops.aten_linspace,
768
tolerance={torch.float16: (2e-2, 2e-3)},
769
- ).xfail(
+ )
770
+ .xfail(
771
dtypes=(torch.int64, torch.int32),
772
reason="fixme: Results do not match with PyTorch. https://github.com/microsoft/onnxscript/issues/854",
773
774
+ .skip(
775
+ matcher=lambda sample: sample.kwargs.get("dtype") in (torch.int64, torch.int32),
776
+ reason="fixme: Results do not match with PyTorch. https://github.com/microsoft/onnxscript/issues/854",
777
),
778
TorchLibOpInfo("log", core_ops.aten_log),
779
TorchLibOpInfo("le", core_ops.aten_le),
0 commit comments