2020-10-09 11:56:12 +02:00
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
* \ingroup bli
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef WITH_TBB
|
|
|
|
/* Quiet top level deprecation message, unrelated to API usage here. */
|
2020-11-10 08:48:18 -07:00
|
|
|
# if defined(WIN32) && !defined(NOMINMAX)
|
2020-10-15 17:14:57 -06:00
|
|
|
/* TBB includes Windows.h which will define min/max macros causing issues
|
|
|
|
* when we try to use std::min and std::max later on. */
|
|
|
|
# define NOMINMAX
|
2020-11-10 08:48:18 -07:00
|
|
|
# define TBB_MIN_MAX_CLEANUP
|
2020-10-15 17:14:57 -06:00
|
|
|
# endif
|
2021-02-10 18:17:23 +01:00
|
|
|
# include <tbb/blocked_range.h>
|
|
|
|
# include <tbb/parallel_for.h>
|
|
|
|
# include <tbb/parallel_for_each.h>
|
2022-02-09 13:08:04 +01:00
|
|
|
# include <tbb/parallel_invoke.h>
|
2021-10-04 13:12:38 +11:00
|
|
|
# include <tbb/parallel_reduce.h>
|
2021-06-16 16:29:21 +02:00
|
|
|
# include <tbb/task_arena.h>
|
2020-10-15 17:14:57 -06:00
|
|
|
# ifdef WIN32
|
2020-11-10 08:48:18 -07:00
|
|
|
/* We cannot keep this defined, since other parts of the code deal with this on their own, leading
|
|
|
|
* to multiple define warnings unless we un-define this, however we can only undefine this if we
|
|
|
|
* were the ones that made the definition earlier. */
|
|
|
|
# ifdef TBB_MIN_MAX_CLEANUP
|
|
|
|
# undef NOMINMAX
|
|
|
|
# endif
|
2020-10-15 17:14:57 -06:00
|
|
|
# endif
|
2020-10-09 11:56:12 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "BLI_index_range.hh"
|
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
|
2021-06-16 16:13:53 +02:00
|
|
|
namespace blender::threading {
|
2020-10-09 11:56:12 +02:00
|
|
|
|
|
|
|
template<typename Range, typename Function>
|
|
|
|
void parallel_for_each(Range &range, const Function &function)
|
|
|
|
{
|
|
|
|
#ifdef WITH_TBB
|
|
|
|
tbb::parallel_for_each(range, function);
|
|
|
|
#else
|
|
|
|
for (auto &value : range) {
|
|
|
|
function(value);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Function>
|
|
|
|
void parallel_for(IndexRange range, int64_t grain_size, const Function &function)
|
|
|
|
{
|
|
|
|
if (range.size() == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#ifdef WITH_TBB
|
2021-12-02 12:54:35 +01:00
|
|
|
/* Invoking tbb for small workloads has a large overhead. */
|
|
|
|
if (range.size() >= grain_size) {
|
|
|
|
tbb::parallel_for(
|
|
|
|
tbb::blocked_range<int64_t>(range.first(), range.one_after_last(), grain_size),
|
|
|
|
[&](const tbb::blocked_range<int64_t> &subrange) {
|
|
|
|
function(IndexRange(subrange.begin(), subrange.size()));
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
2020-10-09 11:56:12 +02:00
|
|
|
#else
|
|
|
|
UNUSED_VARS(grain_size);
|
|
|
|
#endif
|
2021-12-02 12:54:35 +01:00
|
|
|
function(range);
|
2020-10-09 11:56:12 +02:00
|
|
|
}
|
|
|
|
|
2021-07-05 18:09:36 -04:00
|
|
|
template<typename Value, typename Function, typename Reduction>
|
|
|
|
Value parallel_reduce(IndexRange range,
|
|
|
|
int64_t grain_size,
|
|
|
|
const Value &identity,
|
|
|
|
const Function &function,
|
|
|
|
const Reduction &reduction)
|
|
|
|
{
|
|
|
|
#ifdef WITH_TBB
|
|
|
|
return tbb::parallel_reduce(
|
|
|
|
tbb::blocked_range<int64_t>(range.first(), range.one_after_last(), grain_size),
|
|
|
|
identity,
|
|
|
|
[&](const tbb::blocked_range<int64_t> &subrange, const Value &ident) {
|
|
|
|
return function(IndexRange(subrange.begin(), subrange.size()), ident);
|
|
|
|
},
|
|
|
|
reduction);
|
|
|
|
#else
|
|
|
|
UNUSED_VARS(grain_size, reduction);
|
|
|
|
return function(range, identity);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-02-09 13:08:04 +01:00
|
|
|
/**
|
|
|
|
* Execute all of the provided functions. The functions might be executed in parallel or in serial
|
|
|
|
* or some combination of both.
|
|
|
|
*/
|
|
|
|
template<typename... Functions> void parallel_invoke(Functions &&...functions)
|
|
|
|
{
|
|
|
|
#ifdef WITH_TBB
|
|
|
|
tbb::parallel_invoke(std::forward<Functions>(functions)...);
|
|
|
|
#else
|
|
|
|
(functions(), ...);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-06-16 16:29:21 +02:00
|
|
|
/** See #BLI_task_isolate for a description of what isolating a task means. */
|
|
|
|
template<typename Function> void isolate_task(const Function &function)
|
|
|
|
{
|
|
|
|
#ifdef WITH_TBB
|
|
|
|
tbb::this_task_arena::isolate(function);
|
|
|
|
#else
|
|
|
|
function();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-06-16 16:13:53 +02:00
|
|
|
} // namespace blender::threading
|