Skip to content

Commit 057e9bb

Browse files
committed
fixup! fixup! fixup! [mlir][linalg] Enable scalable vectorization of linalg.unpack (WIP)
Remove unintended test change
1 parent d06a197 commit 057e9bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/test/Dialect/Linalg/vectorization/linalg-ops.mlir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1239,7 +1239,7 @@ module attributes {transform.with_named_sequence} {
12391239

12401240
func.func @test_vectorize_padded_pack(%arg0: tensor<32x7x15xf32>, %arg1: tensor<32x4x1x16x2xf32>) -> tensor<32x4x1x16x2xf32> {
12411241
%pad = arith.constant 0.000000e+00 : f32
1242-
%pack = linalg.pack %arg0 padding_value(%pad : f32) inner_dims_pos = [2, 1] inner_tiles = [16, [2]] into %arg1 : tensor<32x7x15xf32> -> tensor<32x4x1x16x2xf32>
1242+
%pack = linalg.pack %arg0 padding_value(%pad : f32) inner_dims_pos = [2, 1] inner_tiles = [16, 2] into %arg1 : tensor<32x7x15xf32> -> tensor<32x4x1x16x2xf32>
12431243
return %pack : tensor<32x4x1x16x2xf32>
12441244
}
12451245
// CHECK-DAG: %[[cst:.*]] = arith.constant 0.000000e+00 : f32

0 commit comments

Comments
 (0)