Fix tutorial comment in sgemm_1.cu: use tCrC instead of tCsA in axpby explanation (#2448)

This commit is contained in:
kernyan
2025-07-30 22:09:55 -04:00
committed by GitHub
parent 664c4f7b3e
commit e093b4f691

View File

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