Skip to content

Commit

Permalink
Fix CuTe README Typo (#1951)
Browse files Browse the repository at this point in the history
  • Loading branch information
leimao authored Dec 11, 2024
1 parent 2b6cfd3 commit 33c5843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion media/docs/cute/04_algorithms.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ and the `(...)` to the right of the `=>` describes C.
1. `(V) x (V) => (V)`. The element-wise product of vectors: C<sub>v</sub> += A<sub>v</sub> B<sub>v</sub>. Dispatches to FMA or MMA.
2. `(M) x (N) => (M,N)`. The outer product of vectors: C<sub>mn</sub> += A<sub>m</sub> B_<sub>n</sub>. Dispatches to (4) with V=1.
2. `(M) x (N) => (M,N)`. The outer product of vectors: C<sub>mn</sub> += A<sub>m</sub> B<sub>n</sub>. Dispatches to (4) with V=1.
3. `(M,K) x (N,K) => (M,N)`. The product of matrices: C<sub>mn</sub> += A<sub>mk</sub> B<sub>nk</sub>. Dispatches to (2) for each K.
Expand Down

0 comments on commit 33c5843

Please sign in to comment.