Skip to content

Commit 028a460

Browse files
committed
chore: parallelFor tidy
1 parent 46581c0 commit 028a460

File tree

1 file changed

+24
-13
lines changed

1 file changed

+24
-13
lines changed

include/mrdox/Support/ParallelFor.hpp

+24-13
Original file line numberDiff line numberDiff line change
@@ -19,51 +19,62 @@
1919
#include <thread>
2020
#include <vector>
2121

22+
#include <algorithm>
23+
2224
namespace clang {
2325
namespace mrdox {
2426

2527
/** Visit all elements of a range concurrently.
2628
*/
2729
template<
28-
class Range,
29-
class Worker,
30+
class Elements,
31+
class Workers,
3032
class... Args>
3133
Error
3234
parallelFor(
33-
Range&& range,
34-
std::vector<Worker>& workers,
35+
Elements& elements,
36+
Workers& workers,
3537
Args&&... args)
3638
{
39+
if(std::next(std::begin(workers)) == std::end(workers))
40+
{
41+
// Non-concurrent
42+
auto&& worker(*std::begin(workers));
43+
for(auto&& element : elements)
44+
if(! worker(element, std::forward<Args>(args)...))
45+
return Error("canceled");
46+
return Error::success();
47+
}
48+
3749
std::mutex m;
3850
bool cancel = false;
39-
auto it = std::begin(range);
40-
auto const end = std::end(range);
51+
auto it = std::begin(elements);
52+
auto const end = std::end(elements);
4153
auto const do_work =
42-
[&](Worker& worker)
54+
[&](auto&& agent)
4355
{
4456
std::unique_lock<std::mutex> lock(m);
4557
if(it == end || cancel)
4658
return false;
4759
auto it0 = it;
4860
++it;
4961
lock.unlock();
50-
bool cancel_ = worker(*it0,
62+
bool cancel_ = ! agent(*it0,
5163
std::forward<Args>(args)...);
5264
if(! cancel_)
5365
return true;
5466
cancel = true;
5567
return false;
5668
};
5769
std::vector<std::thread> threads;
58-
threads.reserve(workers.size());
59-
for(std::size_t i = 0; i < workers.size(); ++i)
70+
for(auto& worker : workers)
6071
threads.emplace_back(std::thread(
61-
[&](std::size_t i_)
72+
[&](auto&& agent)
6273
{
6374
for(;;)
64-
if(! do_work(workers[i]))
75+
if(! do_work(agent))
6576
break;
66-
}, i));
77+
}, worker));
6778
for(auto& t : threads)
6879
t.join();
6980
if(cancel)

0 commit comments

Comments
 (0)