Skip to content

Commit 29a9608

Browse files
Fix test failure from b9b7dc0
1 parent 492bfe9 commit 29a9608

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/test/unit/language/test_tensor_descriptor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ def test_make_tensor_descriptor_matmul(num_stages, num_ctas, BLOCK_M, BLOCK_N, B
575575
else:
576576
M, N, K = 1024, 512, 256
577577

578-
if is_xpu() and (BLOCK_M, BLOCK_N, BLOCK_K) in [(64, 512, 32), (256, 128, 32)]:
578+
if is_xpu() and (BLOCK_M, BLOCK_N, BLOCK_K) in [(512, 64, 32), (64, 512, 32), (256, 128, 32)]:
579579
pytest.skip("FIXME: issue #3923")
580580

581581
torch.manual_seed(42)

0 commit comments

Comments
 (0)