-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[QST] a redundant code #1211
Comments
I guess keeping it is better, which will make things clear. It hints that, for the SplitK Serial case, we do not need to do mma, just do epilogue reduction only. |
|
In addition, !kSplitKSerial will enable compile time optimization |
in the old days, these go through different kernel level code though they are very similar to each other. as to this line, i think we should not check |
This issue has been labeled |
Closing due to inactivity. Feel free to reopen if needed. |
What is your question?
cutlass/include/cutlass/gemm/kernel/gemm.h
Line 273 in b5d8a5d
why add
if (!kSplitKSerial || gemm_k_iterations > 0) {
, I thinkif (gemm_k_iterations > 0) {
is enough.The text was updated successfully, but these errors were encountered: