Skip to content

Commit

Permalink
Fix cute doc (#1529)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiweibo authored Oct 7, 2024
1 parent e2b0789 commit b27c49e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion media/docs/cute/0x_gemm_tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ This `local_tile` is simply shorthand for
1. apply the tiler via [`zipped_divide`](./02_layout_algebra.md#zipped-tiled-flat-divides)
```cpp
// ((BLK_M,BLK_K),(m,k))
Tensor gA_mk = zipped_divide(gA, select<0,2>(cta_tiler));
Tensor gA_mk = zipped_divide(mA, select<0,2>(cta_tiler));
```
2. apply the coord to the second mode, the "Rest" mode, to extract out the correct tiles for this CTA.
```cpp
Expand Down

0 comments on commit b27c49e

Please sign in to comment.