From 33c584364e15b8d5fc781b53d61abd5c8d21efb2 Mon Sep 17 00:00:00 2001 From: Lei Mao Date: Tue, 10 Dec 2024 19:05:40 -0800 Subject: [PATCH] Fix CuTe README Typo (#1951) --- media/docs/cute/04_algorithms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media/docs/cute/04_algorithms.md b/media/docs/cute/04_algorithms.md index 75fc6ab0..353e9cc4 100644 --- a/media/docs/cute/04_algorithms.md +++ b/media/docs/cute/04_algorithms.md @@ -166,7 +166,7 @@ and the `(...)` to the right of the `=>` describes C. 1. `(V) x (V) => (V)`. The element-wise product of vectors: Cv += Av Bv. Dispatches to FMA or MMA. -2. `(M) x (N) => (M,N)`. The outer product of vectors: Cmn += Am B_n. Dispatches to (4) with V=1. +2. `(M) x (N) => (M,N)`. The outer product of vectors: Cmn += Am Bn. Dispatches to (4) with V=1. 3. `(M,K) x (N,K) => (M,N)`. The product of matrices: Cmn += Amk Bnk. Dispatches to (2) for each K.