parallel-util
parallel-util copied to clipboard
Simple header-only implementation of "parallel_for" and "parallel_map" for C++11
Results
1
parallel-util issues
Sort by
recently updated
recently updated
newest added
Recently I added a new `parallel_for` function: ``` template void queue_based_parallel_for(int n, Callable function, int target_concurrency = 0); ``` This function uses a task queue and each thread takes a...