[Mlir-commits] [mlir] [mlir][linalg] Enable fuse consumer (PR #89893)

Oleksandr Alex Zinenko llvmlistbot at llvm.org
Thu Apr 25 09:21:25 PDT 2024


================
@@ -0,0 +1,103 @@
+// RUN: mlir-opt %s -split-input-file -test-linalg-fuse-consumer | FileCheck %s
+
+#map = affine_map<()[s0] -> (64 ceildiv s0)>
+#map1 = affine_map<(d0)[s0] -> (d0 * s0)>
+#map2 = affine_map<(d0)[s0] -> (-(d0 * s0) + 64, s0)>
+// CHECK-LABEL: func.func @fuse_tileable_consumer
+// CHECK-SAME: %[[CHUNK_SIZE:[0-9a-z]+]]: index
----------------
ftynse wrote:

I see, thanks for trying. Maybe let's update to `[0-9A-Za-z_]+` then, which should capture all supported names.

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


More information about the Mlir-commits mailing list