Skip to content

Commit cb746c9

Browse files
[mlir][Linalg] Fix post-commit typo for 5443743
1 parent 5443743 commit cb746c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/include/mlir/Dialect/Linalg/TransformOps/LinalgTransformOps.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ def PackOp : Op<Transform_Dialect, "structured.pack", [
384384
// affine_map<(d0, d1, d2, d3, d4, d5) -> (d0, d1, d3, d4)>
385385
%0 = linalg.generic_representing_some_higher_d_matmul
386386
ins(%A, %B: tensor<?x?x2x4xf32>, tensor<?x?x4x3xf32>)
387-
outs( %C: tensor<?x?x2x4xf32>)
387+
outs( %C: tensor<?x?x2x3xf32>)
388388
```
389389
In particular, note that the second operand `B` has shape `KxNxnxk` (and not
390390
`KxNxkxn` as one could expect by looking **only** at the operand).

0 commit comments

Comments
 (0)