From e093b4f691cbb923de33b0555cd5e2b9d8cd8a1f Mon Sep 17 00:00:00 2001 From: kernyan Date: Wed, 30 Jul 2025 22:09:55 -0400 Subject: [PATCH] Fix tutorial comment in sgemm_1.cu: use tCrC instead of tCsA in axpby explanation (#2448) --- examples/cute/tutorial/sgemm_1.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cute/tutorial/sgemm_1.cu b/examples/cute/tutorial/sgemm_1.cu index 797ccd0f4..c2c0623b7 100644 --- a/examples/cute/tutorial/sgemm_1.cu +++ b/examples/cute/tutorial/sgemm_1.cu @@ -238,7 +238,7 @@ gemm_device(ProblemShape shape_MNK, CtaTiler cta_tiler, // TUTORIAL: The above call to axpby(alpha, tCrC, beta, tCgC) is equivalent to // CUTE_UNROLL - // for (int i = 0; i < size(tCsA); ++i) { + // for (int i = 0; i < size(tCrC); ++i) { // tCgC(i) = alpha * tCrC(i) + beta * tCgC(i); // } }