[Mlir-commits] [mlir] [MLIR][Linalg] Pattern to fold AddOp to accumulation via contraction op's dest (PR #110514)

Andrzej WarzyƄski llvmlistbot at llvm.org
Tue Oct 1 13:29:29 PDT 2024


================
@@ -0,0 +1,288 @@
+// RUN: mlir-opt %s -transform-interpreter -cse -split-input-file | FileCheck %s
+
+!type = tensor<2048x2048xf32>
+func.func @expect_add_to_fold(%arg0: !type, %arg1: !type) -> !type {
----------------
banach-space wrote:

[nit] Could we have more descriptive function names? In particular, what's the difference between this version of `@expect_add_to_fold` and the one below?

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


More information about the Mlir-commits mailing list