[llvm] 10a796a - [Support] Avoid using main thread for llvm::parallelFor().
Alexey Lapshin via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 25 03:47:58 PST 2023
Author: Alexey Lapshin
Date: 2023-01-25T12:46:04+01:00
New Revision: 10a796a0beb22ec604b3038b544cc9058facea79
URL: https://github.com/llvm/llvm-project/commit/10a796a0beb22ec604b3038b544cc9058facea79
DIFF: https://github.com/llvm/llvm-project/commit/10a796a0beb22ec604b3038b544cc9058facea79.diff
LOG: [Support] Avoid using main thread for llvm::parallelFor().
The llvm::parallelFor() uses threads created by ThreadPoolExecutor as well as main thread.
The index for the main thread matches with the index for the first thread created by ThreadPoolExecutor.
It results in that getThreadIndex returns the same value for different threads.
To avoid thread index clashing - do not use main thread for llvm::parallelFor():
parallel::TaskGroup TG;
for (; Begin + TaskSize < End; Begin += TaskSize) {
TG.spawn([=, &Fn] {
for (size_t I = Begin, E = Begin + TaskSize; I != E; ++I)
Fn(I);
});
}
for (; Begin != End; ++Begin) <<<< executed by main thread.
Fn(Begin); <<<<
return; <<<<
Differential Revision: https://reviews.llvm.org/D142317
Added:
Modified:
llvm/lib/Support/Parallel.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Support/Parallel.cpp b/llvm/lib/Support/Parallel.cpp
index 23ed9d813548e..c256d256be4fa 100644
--- a/llvm/lib/Support/Parallel.cpp
+++ b/llvm/lib/Support/Parallel.cpp
@@ -214,8 +214,12 @@ void llvm::parallelFor(size_t Begin, size_t End,
Fn(I);
});
}
- for (; Begin != End; ++Begin)
- Fn(Begin);
+ if (Begin != End) {
+ TG.spawn([=, &Fn] {
+ for (size_t I = Begin; I != End; ++I)
+ Fn(I);
+ });
+ }
return;
}
#endif
More information about the llvm-commits
mailing list