Skip to content

Commit 667446a

Browse files
HydraQYHccecka
andauthored
[Doc]Fix Mode Name and Stride in 0t_mma_atom.md (#2910)
* Fix wrong stride in 0t_mma_atom.md * Fix mode name. * Update media/docs/cpp/cute/0t_mma_atom.md Co-authored-by: Cris Cecka <ccecka@users.noreply.github.com> --------- Co-authored-by: Cris Cecka <ccecka@users.noreply.github.com>
1 parent 3f5bafb commit 667446a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

media/docs/cpp/cute/0t_mma_atom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ using CLayout = Layout<Shape <Shape < _4, _8, ...>, Shape < _2, _2>>,
403403
Stride<Stride<_128, _1, ...>, Stride<_64, _8>>>;
404404
```
405405

406-
Finally, we get this entire pattern repeating four times, once for each warp, down the `M`-mode starting at `(m,n) = (16,0) = 16`. where two core matrices that belong to the same warp are stacked on top of each other. This makes the size of the final sub-mode of M 4. As for the stride, this time we go to `(T32, V0)`, which makes it a stride of 32.
406+
Finally, we get this entire pattern repeating four times, once for each warp, down the `M`-mode starting at `(m,n) = (16,0) = 16`, where four core matrices that belong to the same warp are stacked on top of each other. This makes the size of the final sub-mode of `thrID` 4 (there are four warps) with a stride of `16` (to take us to coordinate `(16,0) = 16`).
407407

408408
```cpp
409409
// (T128,V4) -> (M64,N8)

0 commit comments

Comments
 (0)