Skip to content

Commit f5c83f1

Browse files
[TEST] Skip bf16 input_precision after 33e7dc2
Signed-off-by: Whitney Tsang <[email protected]>
1 parent 1c2f9d0 commit f5c83f1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

python/test/unit/language/test_core.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3272,6 +3272,8 @@ def test_dot(M, N, K, num_warps, col_a, col_b, epilogue, input_precision, in_dty
32723272
pytest.xfail(f"input_precision {input_precision} is not supported in the interpreter")
32733273
else:
32743274
if is_xpu():
3275+
if input_precision in ("bf16x3", "bf16x6"):
3276+
pytest.skip(f"input_precision {input_precision} is not supported")
32753277
if (M < 8 or N < 16 or (K < 16 and in_dtype == 'float16') or (K < 8 and in_dtype == 'float32')):
32763278
pytest.xfail("XPU: small dots are not supported")
32773279
elif not is_hip() and K < 16:

0 commit comments

Comments
 (0)