diff --git a/test/dtypes/test_fpx.py b/test/dtypes/test_fpx.py index 130bdadf38..e0b8604e62 100644 --- a/test/dtypes/test_fpx.py +++ b/test/dtypes/test_fpx.py @@ -37,6 +37,7 @@ def test_pack_tc_fp6_correctness(self, device): actual = _pack_tc_fp6(x) torch.testing.assert_close(actual, expected) + @pytest.mark.skipif(TORCH_VERSION_AT_LEAST_2_5, reason="upstream breaking change in PyTorch nightlies, revert skip when fixed") @parametrize("ebits,mbits", _FPx_DTYPES) @parametrize("device", _DEVICES) def test_to_scaled_tc_fpx_compile(self, ebits, mbits, device):