Reference documentation for deal.II version 9.6.0
|
Classes | |
struct | EnableOpenMPSimdFor |
class | TBBPartitioner |
Functions | |
template<typename Iterator , typename Functor > | |
void | parallel_for (Iterator x_begin, Iterator x_end, const Functor &functor, const unsigned int grainsize) |
template<typename Iterator , typename Functor > | |
void | parallel_for (Iterator x_begin, Iterator x_end, const Functor &functor, const unsigned int grainsize, const std::shared_ptr< tbb::affinity_partitioner > &partitioner) |
template<typename Iterator , typename Function > | |
void | apply_to_subranges (const tbb::blocked_range< Iterator > &range, const Function &f) |
A class that wraps a TBB affinity partitioner in a thread-safe way. In Vector, we use a shared pointer to share an affinity partitioner between different vectors of the same size for improving data (and NUMA) locality. However, when an outer task does multiple vector operations, the shared pointer could lead to race conditions. This class only allows one instance to get a partitioner. The other objects cannot use that object and need to create their own copy.
void parallel::internal::parallel_for | ( | Iterator | x_begin, |
Iterator | x_end, | ||
const Functor & | functor, | ||
const unsigned int | grainsize ) |
Encapsulate tbb::parallel_for.
Definition at line 83 of file parallel.h.
void parallel::internal::parallel_for | ( | Iterator | x_begin, |
Iterator | x_end, | ||
const Functor & | functor, | ||
const unsigned int | grainsize, | ||
const std::shared_ptr< tbb::affinity_partitioner > & | partitioner ) |
Encapsulate tbb::parallel_for when an affinite_partitioner is provided.
Definition at line 100 of file parallel.h.
void parallel::internal::apply_to_subranges | ( | const tbb::blocked_range< Iterator > & | range, |
const Function & | f ) |
Take a range argument and call the given function with its begin and end.
Definition at line 370 of file parallel.h.