[Mlir-commits] [mlir] [MLIR][Tensor] Fix checks for `fold-into-pack-and-unpack.mlir` (PR #77622)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Wed Jan 10 09:16:42 PST 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mlir-tensor

@llvm/pr-subscribers-mlir

Author: lorenzo chelini (chelini)

<details>
<summary>Changes</summary>

Fix after 113bce0

---
Full diff: https://github.com/llvm/llvm-project/pull/77622.diff


1 Files Affected:

- (modified) mlir/test/Dialect/Tensor/fold-into-pack-and-unpack.mlir (+6-6) 


``````````diff
diff --git a/mlir/test/Dialect/Tensor/fold-into-pack-and-unpack.mlir b/mlir/test/Dialect/Tensor/fold-into-pack-and-unpack.mlir
index 6003135b66b19d..682107dbebbfae 100644
--- a/mlir/test/Dialect/Tensor/fold-into-pack-and-unpack.mlir
+++ b/mlir/test/Dialect/Tensor/fold-into-pack-and-unpack.mlir
@@ -469,10 +469,10 @@ func.func @linalg_transpose_tensor_pack_fold_dynamic_outer_dims_tile_dims_tile_s
 //CHECK-LABEL:   func.func @linalg_transpose_tensor_pack_fold_dynamic_outer_dims_tile_dims_tile_sizes(
 // CHECK-SAME:   %[[ARG0:.+]]: tensor<?x?x?x?xf32>, %[[ARG1:.+]]: tensor<?x?x?x?xf32>, 
 // CHECK-SAME:   %[[ARG2:.+]]: tensor<?x?x?x?x?x?x?xf32>, %[[ARG3:.+]]: index, %[[ARG4:.+]]: index, %[[ARG5:.+]]: index) -> tensor<?x?x?x?x?x?x?xf32> {
-//      CHECK:     %[[C0:.+]] = arith.constant 0 : index
-//      CHECK:     %[[C1:.+]] = arith.constant 1 : index
-//      CHECK:     %[[C2:.+]] = arith.constant 2 : index
-//      CHECK:     %[[C3:.+]] = arith.constant 3 : index
+//      CHECK-DAG:     %[[C0:.+]] = arith.constant 0 : index
+//      CHECK-DAG:     %[[C1:.+]] = arith.constant 1 : index
+//      CHECK-DAG:     %[[C2:.+]] = arith.constant 2 : index
+//      CHECK-DAG:     %[[C3:.+]] = arith.constant 3 : index
 //      CHECK:     %[[DIM:.+]] = tensor.dim %[[ARG0]], %[[C0]] : tensor<?x?x?x?xf32>
 //      CHECK:     %[[DIM0:.+]] = tensor.dim %[[ARG0]], %[[C1]] : tensor<?x?x?x?xf32>
 //      CHECK:     %[[DIM1:.+]] = tensor.dim %[[ARG0]], %[[C2]] : tensor<?x?x?x?xf32>
@@ -509,8 +509,8 @@ func.func @linalg_transpose_tensor_pack_multiple_tiles(%arg0: tensor<?x32x128xbf
 //      CHECK:   #[[map:.+]] = affine_map<()[s0] -> (s0 ceildiv 16)>
 //CHECK-LABEL:   func.func @linalg_transpose_tensor_pack_multiple_tiles(
 // CHECK-SAME:    %[[ARG0:.+]]: tensor<?x32x128xbf16>) -> tensor<32x?x64x16x2xbf16> {
-//      CHECK:   %[[C0:.+]] = arith.constant 0 : index
-//      CHECK:   %[[CST:.+]] = arith.constant 0.000000e+00 : bf16
+//      CHECK-DAG:   %[[C0:.+]] = arith.constant 0 : index
+//      CHECK-DAG:   %[[CST:.+]] = arith.constant 0.000000e+00 : bf16
 //      CHECK:   %[[DIM:.+]] = tensor.dim %[[ARG0]], %[[C0]] : tensor<?x32x128xbf16>
 //      CHECK:   %[[VAL0:.+]] = affine.apply #[[map:.+]]()[%[[DIM]]]
 //      CHECK:   %[[VAL1:.+]] = tensor.empty(%[[VAL0]]) : tensor<32x?x64x16x2xbf16>

``````````

</details>


https://github.com/llvm/llvm-project/pull/77622


More information about the Mlir-commits mailing list