Skip to content

Commit 2cc9369

Browse files
[TEST] Skip test_tensor_descriptor_reduce
1 parent ce778be commit 2cc9369

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

python/test/unit/language/test_tensor_descriptor.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1520,12 +1520,15 @@ def test_tensor_descriptor_reduce(kind, descriptor, dtype_str, num_ctas, M_BLOCK
15201520
is_native = is_cuda() and torch.cuda.get_device_capability()[0] >= 9
15211521
if not is_native:
15221522
if num_ctas != 1:
1523-
pytest.skip("Multi-CTA not supported")
1523+
pytest.xfail("Multi-CTA not supported")
15241524
if descriptor == "host":
1525-
pytest.skip("NYI: Host side tensor descriptor fallback")
1525+
pytest.xfail("NYI: Host side tensor descriptor fallback")
15261526
if is_hip_cdna3() and (kind, dtype_str, M_BLOCK, N_BLOCK) in REDUCE_SKIP_HIP_CDNA3:
15271527
pytest.skip("Broken on rocm")
15281528

1529+
if is_xpu():
1530+
pytest.skip("FIXME: issue #4281")
1531+
15291532
@triton.jit(debug=True)
15301533
def kernel(out_desc, out_ptr, a_ptr, M, N, M_BLOCK: tl.constexpr, N_BLOCK: tl.constexpr, kind: tl.constexpr):
15311534
moffset = tl.program_id(0) * M_BLOCK

0 commit comments

Comments
 (0)