Commit cc5f83b5 authored by hubertlu-tw's avatar hubertlu-tw
Browse files

Skip a failing test introduced by a upstream PyTorch regression

parent 12ff0e23
...@@ -105,6 +105,7 @@ class TestFusedAdam(TestFusedOptimizer): ...@@ -105,6 +105,7 @@ class TestFusedAdam(TestFusedOptimizer):
def test_half(self): def test_half(self):
self.gen_single_type_test(param_type=torch.float16, skip_assert=True) self.gen_single_type_test(param_type=torch.float16, skip_assert=True)
@unittest.skip("Skipped the test since a regression introduced from PyTorch upstream: due to https://github.com/pytorch/pytorch/issues/80809#issuecomment-1175211598. Please also refer to https://github.com/ROCmSoftwarePlatform/apex/issues/82")
def test_bfloat16(self): def test_bfloat16(self):
self.gen_single_type_test(param_type=torch.bfloat16, skip_assert=True) self.gen_single_type_test(param_type=torch.bfloat16, skip_assert=True)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment