Fix tutorial comment in sgemm_1.cu: use tCrC instead of tCsA in axpby explanation (#2448)
This commit is contained in:
@@ -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
|
// TUTORIAL: The above call to axpby(alpha, tCrC, beta, tCgC) is equivalent to
|
||||||
// CUTE_UNROLL
|
// 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);
|
// tCgC(i) = alpha * tCrC(i) + beta * tCgC(i);
|
||||||
// }
|
// }
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user