[llvm] [offload] Remove bad assert in StaticLoopChunker::Distribute (PR #132705)

Joseph Huber via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 24 06:59:47 PDT 2025


================
@@ -820,7 +820,6 @@ template <typename Ty> class StaticLoopChunker {
     Ty ThreadChunk = 0;
     Ty NumThreads = 1;
     Ty TId = 0;
-    ASSERT(TId == mapping::getThreadIdInBlock(), "Bad thread id");
----------------
jhuber6 wrote:

So this code is only ever expected to run with thread zero? That seems wrong because I thought even in generic mode we used a warp at the end of the block or something.

https://github.com/llvm/llvm-project/pull/132705


More information about the llvm-commits mailing list