Skip to content

Commit

Permalink
HIP
Browse files Browse the repository at this point in the history
  • Loading branch information
lezcano committed Mar 28, 2024
1 parent a47fc35 commit fe2b6a2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/test/unit/language/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2948,6 +2948,8 @@ def test_dot(M, N, K, num_warps, col_a, col_b, epilogue, input_precision, in_dty
pytest.skip(
"numpy.dot with int8 inputs will overflow while tl.dot doesn't because MMA instruction's accumulator is 32-bit"
)
if is_hip() and (input_precision != "ieee"):
pytest.skip(f"{input_precision} not supported on HIP")

torch.backends.cuda.matmul.allow_tf32 = input_precision == "tf32"

Expand Down

0 comments on commit fe2b6a2

Please sign in to comment.