Skip to content

Commit

Permalink
skip test_bfloat16_unary on AMD (tinygrad#7169)
Browse files Browse the repository at this point in the history
  • Loading branch information
Qazalin authored Oct 20, 2024
1 parent 7134611 commit 8074c0e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/test_dtype_alu.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ def test_float16_unary(self, a, op): universal_test_unary(a, dtypes.float16, op)

@unittest.skipUnless(is_dtype_supported(dtypes.bfloat16, Device.DEFAULT), f"no bfloat16 on {Device.DEFAULT}")
@given(ht.bfloat16, strat.sampled_from(unary_operations))
@unittest.skipIf(Device.DEFAULT == "AMD", "broken on AMD")
def test_bfloat16_unary(self, a, op): universal_test_unary(a, dtypes.bfloat16, op)

@given(ht.uint8, ht.uint8, strat.sampled_from(integer_binary_operations))
Expand Down

0 comments on commit 8074c0e

Please sign in to comment.