Skip to content

Commit 546e577

Browse files
committed
skip test_trans_reshape as block ptrs are expected to be preserved
1 parent b799a05 commit 546e577

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

python/test/unit/language/test_core.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4261,6 +4261,11 @@ def kernel():
42614261

42624262
def test_trans_reshape(device):
42634263

4264+
if is_xpu():
4265+
pytest.skip(
4266+
"test_trans_reshape: XPU block pointer implementation preserves the block pointer load for eventual lowering to 2D block read, does not convert layouts in TTGIR"
4267+
)
4268+
42644269
@triton.jit
42654270
def kernel(in_base_ptr, out_base_ptr, IN_SHAPE0: tl.constexpr, IN_SHAPE1: tl.constexpr):
42664271

0 commit comments

Comments
 (0)