MCPcopy Create free account
hub / github.com/cameron314/concurrentqueue / parallel_invoke

Function parallel_invoke

benchmarks/tbb/parallel_invoke.h:246–249  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

244// presence of task_group_context is defined automatically
245template<typename F0, typename F1, typename... F>
246void parallel_invoke(F0&& f0, F1&& f1, F&&... f) {
247 typedef typename internal::impl_selector<internal::false_type, F...>::type selector_type;
248 internal::parallel_invoke_impl(selector_type(), std::forward<F0>(f0), std::forward<F1>(f1), std::forward<F>(f)...);
249}
250
251#else
252

Callers

nothing calls this directly

Calls 3

parallel_invoke_implFunction · 0.85
add_childrenMethod · 0.80
run_and_finishMethod · 0.80

Tested by

no test coverage detected