18 #include "scope_guard.h" 19 #include "thread_pool.h" 24 extern thread_local
bool g_inside_parallel_for;
54 template <
class T,
class Body>
55 void for_each(T& array,
const Body& loop_body) {
56 CHECK(!g_inside_parallel_for);
58 auto thread_pool = ParallelForSupport::threadPool();
59 CHECK(thread_pool !=
nullptr);
61 if (array.size() == 0)
72 constexpr
int kShardsGranularity = 100;
74 const int size = int(array.size());
75 const int shards_count = thread_pool->threadsCount() * kShardsGranularity;
76 const int shard_size = size / shards_count;
77 const int remainder = size % shards_count;
80 auto batch = make_unique<WorkBatch>();
83 for (
int i = 0; i < shards_count && index < size; ++i) {
84 int actual_shard_size = i < remainder ? (shard_size + 1) : shard_size;
85 CHECK(actual_shard_size > 0);
86 batch->pushWork([&, beginIndex = index, endIndex = index + actual_shard_size] {
87 g_inside_parallel_for =
true;
88 SCOPE_EXIT { g_inside_parallel_for =
false; };
90 CHECK(beginIndex < endIndex);
92 for (
int i = beginIndex; i < endIndex; ++i) {
93 loop_body(i, array[i]);
97 index += actual_shard_size;
102 thread_pool->processBatch(std::move(batch));
Parallel Processing primitives.
Definition: parallel_for_each.cpp:15
void for_each(T &array, const Body &loop_body)
Iterates over an array, with support for parallel execution.
Definition: parallel_for_each.h:55