Reference documentation for deal.II version 9.1.1
|
#include <deal.II/base/work_stream.h>
Public Member Functions | |
WorkerAndCopier (const std::function< void(const Iterator &, ScratchData &, CopyData &)> &worker, const std::function< void(const CopyData &)> &copier, const ScratchData &sample_scratch_data, const CopyData &sample_copy_data) | |
void | operator() (const tbb::blocked_range< typename std::vector< Iterator >::const_iterator > &range) |
Private Types | |
using | ScratchAndCopyDataList = std::list< ScratchAndCopyDataObjects > |
Private Attributes | |
const std::function< void(const Iterator &, ScratchData &, CopyData &)> | worker |
const std::function< void(const CopyData &)> | copier |
const ScratchData & | sample_scratch_data |
A class that manages calling the worker and copier functions. Unlike the other implementations, parallel_for is used instead of a pipeline.
Definition at line 747 of file work_stream.h.
|
private |
Typedef to a list of scratch data objects. The rationale for this list is provided in the variables that use these lists.
Definition at line 866 of file work_stream.h.
|
inline |
Constructor.
Definition at line 753 of file work_stream.h.
|
inline |
The function that calls the worker and the copier functions on a range of items denoted by the two arguments.
Definition at line 771 of file work_stream.h.
|
private |
Pointer to the function that does the assembling on the sequence of cells.
Definition at line 875 of file work_stream.h.
|
private |
Pointer to the function that does the copying from local contribution to global object.
Definition at line 881 of file work_stream.h.
|
private |
References to sample scratch and copy data for when we need them.
Definition at line 886 of file work_stream.h.