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); // } }