[Mlir-commits] [mlir] [mlir][linalg][test] Update `simplify-pack-unpack.mlir`. (PR #209011)
Andrzej WarzyĆski
llvmlistbot at llvm.org
Mon Jul 13 06:43:53 PDT 2026
================
@@ -196,21 +196,21 @@ func.func @single_last_inner_dim_unpacking_with_identity_outer_dims_perm(%arg0:
// -----
-// CHECK-LABEL: func.func @unpacking_with_outer_dims_perm(
+// CHECK-LABEL: func.func @negative_unpacking_with_outer_dims_perm(
// CHECK-NOT: tensor.collpase_shape
// CHECK: linalg.unpack
-func.func @unpacking_with_outer_dims_perm(%arg0: tensor<8x5x32xf32>) -> tensor<5x256xf32> {
+func.func @negative_unpacking_with_outer_dims_perm(%arg0: tensor<8x5x32xf32>) -> tensor<5x256xf32> {
%empty = tensor.empty() : tensor<5x256xf32>
%0 = linalg.unpack %arg0 outer_dims_perm = [1, 0] inner_dims_pos = [1] inner_tiles = [32] into %empty : tensor<8x5x32xf32> -> tensor<5x256xf32>
return %0 : tensor<5x256xf32>
}
// -----
-// CHECK-LABEL: func.func @single_first_inner_dim_unpacking(
+// CHECK-LABEL: func.func @negative_single_first_inner_dim_unpacking(
// CHECK-NOT: tensor.collapse_shape
// CHECK: linalg.unpack
-func.func @single_first_inner_dim_unpacking(%arg0: tensor<8x5x32xf32>) -> tensor<256x5xf32> {
+func.func @negative_single_first_inner_dim_unpacking(%arg0: tensor<8x5x32xf32>) -> tensor<256x5xf32> {
----------------
banach-space wrote:
Why does this one fail?
https://github.com/llvm/llvm-project/pull/209011
More information about the Mlir-commits
mailing list