Skip to content

Commit

Permalink
Typo in linalg_ext.unpack documentation (iree-org#11145)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjacob authored Nov 12, 2022
1 parent a389b9a commit b833d9d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ def IREELinalgExt_PackOp : IREELinalgExt_Op<"pack", [
Example KC_to_CKkc

```mlir
iree_linalg_ext.pack %arg0 outer_dims_pos = [1, 0] inner_dims_pos = [0, 1]
iree_linalg_ext.pack %arg0 outer_dims_perm = [1, 0] inner_dims_pos = [0, 1]
inner_tiles = [32, 8] into %arg1 : (memref<128x256xf32> memref<32x4x32x8xf32>)
```

Expand Down Expand Up @@ -707,7 +707,7 @@ def IREELinalgExt_UnPackOp : IREELinalgExt_Op<"unpack", [
Example CKkc_to_KC:

```mlir
iree_linalg_ext.unpack %arg1 outer_dims_pos = [1, 0] inner_dims_pos = [0, 1]
iree_linalg_ext.unpack %arg1 outer_dims_perm = [1, 0] inner_dims_pos = [0, 1]
inner_tiles = [32, 8] into %arg0 : (memref<32x4x32x8xf32> memref<128x256xf32>)
```
}];
Expand Down

0 comments on commit b833d9d

Please sign in to comment.