[mlir][Linalg] Fix post-commit typo for 5443743ca1874acfe2d5654fedd4a0c0bed6777e
authorNicolas Vasilache <nicolas.vasilache@gmail.com>
Tue, 17 Jan 2023 13:40:23 +0000 (05:40 -0800)
committerNicolas Vasilache <nicolas.vasilache@gmail.com>
Tue, 17 Jan 2023 13:40:25 +0000 (05:40 -0800)
mlir/include/mlir/Dialect/Linalg/TransformOps/LinalgTransformOps.td

index 2d0557a..8ca661e 100644 (file)
@@ -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).