[Mlir-commits] [mlir] cb746c9 - [mlir][Linalg] Fix post-commit typo for 5443743ca1874acfe2d5654fedd4a0c0bed6777e
Nicolas Vasilache
llvmlistbot at llvm.org
Tue Jan 17 05:40:36 PST 2023
Author: Nicolas Vasilache
Date: 2023-01-17T05:40:25-08:00
New Revision: cb746c9e95dc71a78f17b4d5b9cef59b9090db74
URL: https://github.com/llvm/llvm-project/commit/cb746c9e95dc71a78f17b4d5b9cef59b9090db74
DIFF: https://github.com/llvm/llvm-project/commit/cb746c9e95dc71a78f17b4d5b9cef59b9090db74.diff
LOG: [mlir][Linalg] Fix post-commit typo for 5443743ca1874acfe2d5654fedd4a0c0bed6777e
Added:
Modified:
mlir/include/mlir/Dialect/Linalg/TransformOps/LinalgTransformOps.td
Removed:
################################################################################
diff --git a/mlir/include/mlir/Dialect/Linalg/TransformOps/LinalgTransformOps.td b/mlir/include/mlir/Dialect/Linalg/TransformOps/LinalgTransformOps.td
index 2d0557a0b0ff..8ca661e9c945 100644
--- a/mlir/include/mlir/Dialect/Linalg/TransformOps/LinalgTransformOps.td
+++ b/mlir/include/mlir/Dialect/Linalg/TransformOps/LinalgTransformOps.td
@@ -384,7 +384,7 @@ def PackOp : Op<Transform_Dialect, "structured.pack", [
// affine_map<(d0, d1, d2, d3, d4, d5) -> (d0, d1, d3, d4)>
%0 = linalg.generic_representing_some_higher_d_matmul
ins(%A, %B: tensor<?x?x2x4xf32>, tensor<?x?x4x3xf32>)
- outs( %C: tensor<?x?x2x4xf32>)
+ outs( %C: tensor<?x?x2x3xf32>)
```
In particular, note that the second operand `B` has shape `KxNxnxk` (and not
`KxNxkxn` as one could expect by looking **only** at the operand).
More information about the Mlir-commits
mailing list