Skip to content

Commit a75031e

Browse files
committed
[intel] skip 'test_scaled_dot' for XPU
Signed-off-by: Anatoly Myachev <[email protected]>
1 parent d187943 commit a75031e

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
@@ -3385,6 +3385,8 @@ def test_scaled_dot(M, N, K, col_a, col_b, type_a, type_b, num_warps, mma, kpack
33853385
pytest.skip(f"scaled_dot({type_a}, {type_b}) not yet implemented for HIP")
33863386
if mma == 16 and K == 64:
33873387
pytest.skip(f"K == {K} too small for mfma {mma} in scaled_dot")
3388+
if is_xpu():
3389+
pytest.skip("scaled_dot isn't supported on XPU")
33883390

33893391
@triton.jit
33903392
def dot_scale_kernel(a_base, stride_a0, stride_a1, a_scale, b_base, stride_b0, stride_b1, out,

0 commit comments

Comments
 (0)