[Mlir-commits] [mlir] [mlir][linalg][nfc] Fix `linalg.matmul_transpose_a` def. (PR #97690)
Andrzej WarzyĆski
llvmlistbot at llvm.org
Tue Jul 9 02:24:21 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:
Thanks!
So this PR doesn't change the `indexing_maps` - these seem to be actually correct. And `shape_map` seem to be dropped when converting to tablegen. I guess this is only fixing OpDSL?
@JerryShih How can we test/check/verify this change?
https://github.com/llvm/llvm-project/pull/97690
More information about the Mlir-commits
mailing list