[PATCH] [lld][Core] Implement parallel_for_each
Shankar Kalpathi Easwaran
shankarke at gmail.com
Mon Mar 16 13:26:38 PDT 2015
hopefully this is the final version :)
http://reviews.llvm.org/D8348
Files:
include/lld/Core/Parallel.h
Index: include/lld/Core/Parallel.h
===================================================================
--- include/lld/Core/Parallel.h
+++ include/lld/Core/Parallel.h
@@ -295,7 +295,12 @@
#else
template <class Iterator, class Func>
void parallel_for_each(Iterator begin, Iterator end, Func func) {
- // TODO: Make this parallel.
+ TaskGroup tg;
+ int64_t taskSize = 1024;
+ while (taskSize <= std::distance(begin, end)) {
+ tg.spawn([=, &func] { std::for_each(begin, begin + taskSize, func); });
+ begin += taskSize;
+ }
std::for_each(begin, end, func);
}
#endif
EMAIL PREFERENCES
http://reviews.llvm.org/settings/panel/emailpreferences/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D8348.22050.patch
Type: text/x-patch
Size: 582 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150316/c8915e0a/attachment.bin>
More information about the llvm-commits
mailing list