[Mlir-commits] [mlir] [mlir][linalg][nfc] Fix `linalg.matmul_transpose_a` def. (PR #97690)

Andrzej WarzyƄski llvmlistbot at llvm.org
Mon Jul 8 14:40:39 PDT 2024


================
@@ -1336,7 +1336,7 @@ structured_op: !LinalgStructuredOpConfig
     name: C
     kind: output_tensor
     type_var: U
-    shape_map: affine_map<()[s0, s1, s2] -> (s2, s1)>
+    shape_map: affine_map<()[s0, s1, s2] -> (s1, s2)>
----------------
banach-space wrote:

I'm realising that `shape_map` != `indexing_maps` and that all my thinking was wrong. Sorry about the confusion.

What's the intended use of `shape_map`? Is that required specifically for https://mlir.llvm.org/docs/Dialects/Linalg/OpDSL/?

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


More information about the Mlir-commits mailing list