deal.II version GIT relicensing-2171-g98af52917d 2024-11-23 14:40:00+00:00
|
Public Member Functions | |
AlignedVectorMoveConstruct (RandomAccessIterator source_begin, RandomAccessIterator source_end, T *const destination) | |
virtual void | apply_to_subrange (const std::size_t begin, const std::size_t end) const override |
Private Member Functions | |
void | apply_parallel (const std::size_t begin, const std::size_t end, const std::size_t minimum_parallel_grain_size) const |
Private Attributes | |
RandomAccessIterator | source_ |
T *const | destination_ |
Static Private Attributes | |
static const std::size_t | minimum_parallel_grain_size |
Like AlignedVectorCopyConstruct, but use the move-constructor of T
to create new objects.
Definition at line 848 of file aligned_vector.h.
|
inline |
Constructor. Issues a parallel call if there are sufficiently many elements, otherwise works in serial. Moves the data from the half-open interval between source_begin
and source_end
to array starting at destination
(by calling the move constructor with placement new).
The data is moved between the two arrays by invoking the destructor on the source range (preparing for a subsequent call to free).
Definition at line 864 of file aligned_vector.h.
|
inlineoverridevirtual |
This method moves elements from the source to the destination given in the constructor on a subrange given by two integers.
Implements parallel::ParallelForInteger.
Definition at line 885 of file aligned_vector.h.
|
inlineinherited |
This function runs the for loop over the given range [lower,upper)
, possibly in parallel when end-begin is larger than the minimum parallel grain size. This function is marked const because it any operation that changes the data of a derived class will inherently not be thread-safe when several threads work with the same data simultaneously.
Definition at line 743 of file parallel.h.
|
staticprivate |
Definition at line 851 of file aligned_vector.h.
|
private |
Definition at line 906 of file aligned_vector.h.
|
private |
Definition at line 907 of file aligned_vector.h.