[llvm] Remove an incorrect assert in MFMASmallGemmSingleWaveOpt. (PR #130131)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 07:32:11 PDT 2025
================
@@ -1891,7 +1891,6 @@ class MFMASmallGemmSingleWaveOpt final : public IGLPStrategy {
}
}
- assert(Cache->size());
----------------
anjenner wrote:
I didn't think an explicit "return false" would be helpful - if Cache is empty at this point then the loop immediately below will do zero iterations and we'll hit the "return false" immediately below that.
The only other similar assert I found was the one in the next inner class down, MFMASmallGemmSingleWaveOpt::IsPermForDSW . Again this will return false if Cache is empty due to the llvm::any_of() call.
https://github.com/llvm/llvm-project/pull/130131
More information about the llvm-commits
mailing list