mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
[CUDA][FP8] Skip rowwise scaling test on sm89 (#135718)
Same reason as #https://github.com/pytorch/pytorch/pull/133612, rowwise scaling implementation is sm90+ specific (e.g., uses TMA) Pull Request resolved: https://github.com/pytorch/pytorch/pull/135718 Approved by: https://github.com/Skylion007
This commit is contained in:
@ -560,6 +560,7 @@ class TestFP8MatmulCuda(TestCase):
|
||||
self.assertEqual(out_fp8, out_fp8_s)
|
||||
|
||||
@unittest.skipIf(not PLATFORM_SUPPORTS_FP8 or IS_WINDOWS, f8_msg)
|
||||
@unittest.skipIf(not SM90OrLater, "rowwise implementation is currently sm90 specific")
|
||||
@skipIfRocm()
|
||||
@parametrize("use_fast_accum", [True, False])
|
||||
def test_float8_rowwise_scaling_sanity(self, device, use_fast_accum: bool) -> None:
|
||||
|
Reference in New Issue
Block a user