|
| void | MR::parallelFor (size_t begin, size_t end, FunctionRef< void(size_t)> f) |
| void | MR::parallelFor (size_t begin, size_t end, FunctionRef< void(size_t, void *)> f, FunctionRef< void *()> ctx) |
| bool | MR::parallelFor (size_t begin, size_t end, FunctionRef< void(size_t, void *)> f, FunctionRef< void *()> ctx, ProgressCallback cb, size_t reportProgressEvery=1024) |
| template<typename I, typename F, typename ... Cb> |
| auto | MR::ParallelFor (I begin, I end, F &&f, Cb &&... cb) |
| template<typename I, typename L, typename F, typename ... Cb> |
| auto | MR::ParallelFor (I begin, I end, tbb::enumerable_thread_specific< L > &e, F &&f, Cb &&... cb) |
| template<typename T, typename ... F> |
| auto | MR::ParallelFor (const std::vector< T > &v, F &&... f) |
| template<typename T, typename I, typename ... F> |
| auto | MR::ParallelFor (const Vector< T, I > &v, F &&... f) |
| template<typename T, typename I, typename ... F> |
| auto | MR::ParallelFor (const Buffer< T, I > &buf, F &&... f) |