|
| GeneratedNonUniformFieldPackInfo (const BlockDataID fieldID) |
|
| ~GeneratedNonUniformFieldPackInfo ()=default |
|
bool | constantDataExchange () const override |
| Should return true if the amount of data that is packed for a given block in direction "dir" is guaranteed to remain constant over time.
|
|
bool | threadsafeReceiving () const override |
| Must return false if calling unpackData*() and/or communicateLocal*() methods is not thread-safe.
|
|
void | packDataEqualLevelImpl (const Block *sender, stencil::Direction dir, mpi::SendBuffer &buffer) const override |
| Must be thread-safe!
|
|
void | unpackDataEqualLevel (Block *receiver, stencil::Direction dir, mpi::RecvBuffer &buffer) override |
| If NOT thread-safe, threadsafeReceiving must return false!
|
|
void | communicateLocalEqualLevel (const Block *sender, Block *receiver, stencil::Direction dir) override |
| If NOT thread-safe, threadsafeReceiving must return false!
|
|
void | packDataCoarseToFineImpl (const Block *coarseSender, const BlockID &fineReceiver, stencil::Direction dir, mpi::SendBuffer &buffer) const override |
|
void | unpackDataCoarseToFine (Block *fineReceiver, const BlockID &coarseSender, stencil::Direction dir, mpi::RecvBuffer &buffer) override |
|
void | communicateLocalCoarseToFine (const Block *coarseSender, Block *fineReceiver, stencil::Direction dir) override |
|
void | packDataFineToCoarseImpl (const Block *fineSender, const BlockID &coarseReceiver, stencil::Direction dir, mpi::SendBuffer &buffer) const override |
|
void | unpackDataFineToCoarse (Block *coarseReceiver, const BlockID &fineSender, stencil::Direction dir, mpi::RecvBuffer &buffer) override |
|
void | communicateLocalFineToCoarse (const Block *fineSender, Block *coarseReceiver, stencil::Direction dir) override |
|
uint_t | sizeEqualLevelSend (const Block *sender, stencil::Direction dir) const |
|
uint_t | sizeCoarseToFineSend (const Block *coarseSender, const BlockID &fineReceiver, stencil::Direction dir) const |
|
uint_t | sizeCoarseToFineReceive (Block *fineReceiver, stencil::Direction dir) const |
|
uint_t | sizeFineToCoarseSend (const Block *fineSender, stencil::Direction dir) const |
|
| NonUniformPackInfo ()=default |
|
virtual | ~NonUniformPackInfo ()=default |
|
void | packDataEqualLevel (const Block *sender, stencil::Direction dir, mpi::SendBuffer &buffer) const |
| Must be thread-safe! Calls packDataEqualLevelImpl.
|
|
void | packDataCoarseToFine (const Block *coarseSender, const BlockID &fineReceiver, stencil::Direction dir, mpi::SendBuffer &buffer) const |
|
void | packDataFineToCoarse (const Block *fineSender, const BlockID &coarseReceiver, stencil::Direction dir, mpi::SendBuffer &buffer) const |
|
void | clearBufferSizeCheckMap () |
|
template<typename Field_T , typename PackingKernels_T >
Should return true if the amount of data that is packed for a given block in direction "dir" is guaranteed to remain constant over time.
False otherwise. If you are not sure what to return, return false! Returning false is always safe. Falsely return true will lead to errors! However, if the data can be guaranteed to remain constant over time, returning true enables performance optimizations during the communication.
Implements walberla::blockforest::communication::NonUniformPackInfo.
template<typename Field_T , typename PackingKernels_T >
Must return false if calling unpackData*()
and/or communicateLocal*()
methods is not thread-safe.
True otherwise. If you are not sure what to return, return false! Returning false is always safe. Falsely return true will most likely lead to errors! However, if both unpackData*()
AND communicateLocal*()
are thread-safe, returning true can lead to performance improvements.
Implements walberla::blockforest::communication::NonUniformPackInfo.