Skip to content

Commit 4fe443e

Browse files
[Mosaic GPU] Reduce test size to make it run on GPUs with less SMEM (e.g. RTX Pro 6000 Blackwell)
PiperOrigin-RevId: 840262900
1 parent f68ae2b commit 4fe443e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/mosaic/gpu_test.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5267,10 +5267,10 @@ def body(ctx, out, scratch):
52675267
self.assertArraysEqual(kernel(), expected)
52685268

52695269
@parameterized.parameters(
5270-
((4, 64, 128), [[0], [1], [2]], (4, 64, 128), False),
5271-
((4, 64, 128), [[0], [1, 2], [3]], (4, 4, 16, 128), False),
5272-
((4, 8, 16, 128), [[0], [1], [2, 3], [4]], (4, 8, 2, 8, 128), False),
5273-
((4, 64, 128), [[0, 1], [2], [3]], (2, 2, 64, 128), True),
5270+
((4, 64, 64), [[0], [1], [2]], (4, 64, 64), False),
5271+
((4, 64, 64), [[0], [1, 2], [3]], (4, 4, 16, 64), False),
5272+
((4, 8, 16, 64), [[0], [1], [2, 3], [4]], (4, 8, 2, 8, 64), False),
5273+
((4, 64, 64), [[0, 1], [2], [3]], (2, 2, 64, 64), True),
52745274
)
52755275
def test_memref_expand_shape(
52765276
self, input_shape, reassociation, output_shape, has_transforms

0 commit comments

Comments
 (0)