We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f68ae2b commit 4fe443eCopy full SHA for 4fe443e
tests/mosaic/gpu_test.py
@@ -5267,10 +5267,10 @@ def body(ctx, out, scratch):
5267
self.assertArraysEqual(kernel(), expected)
5268
5269
@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),
+ ((4, 64, 64), [[0], [1], [2]], (4, 64, 64), False),
+ ((4, 64, 64), [[0], [1, 2], [3]], (4, 4, 16, 64), False),
+ ((4, 8, 16, 64), [[0], [1], [2, 3], [4]], (4, 8, 2, 8, 64), False),
+ ((4, 64, 64), [[0, 1], [2], [3]], (2, 2, 64, 64), True),
5274
)
5275
def test_memref_expand_shape(
5276
self, input_shape, reassociation, output_shape, has_transforms
0 commit comments