#include <TreeEntry.h>
|
static MPI_Datatype | getForkDatatype () |
| Hands out MPI datatype if we work without the LLVM MPI extension.
|
|
static MPI_Datatype | getJoinDatatype () |
|
static MPI_Datatype | getBoundaryExchangeDatatype () |
|
static MPI_Datatype | getMultiscaleDataExchangeDatatype () |
|
static MPI_Datatype | getGlobalCommunciationDatatype () |
|
static void | freeForkDatatype () |
|
static void | freeJoinDatatype () |
|
static void | freeBoundaryExchangeDatatype () |
|
static void | freeMultiscaleDataExchangeDatatype () |
|
static void | freeGlobalCommunciationDatatype () |
|
static void | initDatatype () |
| Wrapper around getDatatype() to trigger lazy evaluation if we use the lazy initialisation.
|
|
static void | shutdownDatatype () |
| Free the underlying MPI datatype.
|
|
static void | send (const peano4::parallel::TreeEntry &buffer, int destination, int tag, MPI_Comm communicator) |
| In DaStGen (the first version), I had a non-static version of the send as well as the receive.
|
|
static void | receive (peano4::parallel::TreeEntry &buffer, int source, int tag, MPI_Comm communicator) |
|
static void | send (const peano4::parallel::TreeEntry &buffer, int destination, int tag, std::function< void()> startCommunicationFunctor, std::function< void()> waitFunctor, MPI_Comm communicator) |
| Alternative to the other send() where I trigger a non-blocking send an then invoke the functor until the corresponding MPI_Test tells me that the message went through.
|
|
static void | receive (peano4::parallel::TreeEntry &buffer, int source, int tag, std::function< void()> startCommunicationFunctor, std::function< void()> waitFunctor, MPI_Comm communicator) |
|
static void | sendAndPollDanglingMessages (const peano4::parallel::TreeEntry &message, int destination, int tag, MPI_Comm communicator=tarch::mpi::Rank::getInstance().getCommunicator()) |
|
static void | receiveAndPollDanglingMessages (peano4::parallel::TreeEntry &message, int source, int tag, MPI_Comm communicator=tarch::mpi::Rank::getInstance().getCommunicator()) |
|
|
static MPI_Datatype | Datatype = MPI_DATATYPE_NULL |
| Whenever we use LLVM's MPI extension (DaStGe), we rely on lazy initialisation of the datatype.
|
|
Definition at line 27 of file TreeEntry.h.
◆ ObjectConstruction
◆ TreeEntry() [1/4]
peano4::parallel::TreeEntry::TreeEntry |
( |
| ) |
|
◆ TreeEntry() [2/4]
peano4::parallel::TreeEntry::TreeEntry |
( |
int | __id, |
|
|
int | __master ) |
◆ TreeEntry() [3/4]
peano4::parallel::TreeEntry::TreeEntry |
( |
const TreeEntry & | copy | ) |
|
|
default |
◆ TreeEntry() [4/4]
◆ freeBoundaryExchangeDatatype()
void peano4::parallel::TreeEntry::freeBoundaryExchangeDatatype |
( |
| ) |
|
|
static |
◆ freeForkDatatype()
void peano4::parallel::TreeEntry::freeForkDatatype |
( |
| ) |
|
|
static |
◆ freeGlobalCommunciationDatatype()
void peano4::parallel::TreeEntry::freeGlobalCommunciationDatatype |
( |
| ) |
|
|
static |
◆ freeJoinDatatype()
void peano4::parallel::TreeEntry::freeJoinDatatype |
( |
| ) |
|
|
static |
◆ freeMultiscaleDataExchangeDatatype()
void peano4::parallel::TreeEntry::freeMultiscaleDataExchangeDatatype |
( |
| ) |
|
|
static |
◆ getBoundaryExchangeDatatype()
MPI_Datatype peano4::parallel::TreeEntry::getBoundaryExchangeDatatype |
( |
| ) |
|
|
static |
◆ getForkDatatype()
MPI_Datatype peano4::parallel::TreeEntry::getForkDatatype |
( |
| ) |
|
|
static |
Hands out MPI datatype if we work without the LLVM MPI extension.
If we work with this additional feature, this is the routine where the lazy initialisation is done and the datatype is also cached.
Definition at line 63 of file TreeEntry.cpp.
◆ getGlobalCommunciationDatatype()
MPI_Datatype peano4::parallel::TreeEntry::getGlobalCommunciationDatatype |
( |
| ) |
|
|
static |
◆ getId()
int peano4::parallel::TreeEntry::getId |
( |
| ) |
const |
◆ getJoinDatatype()
MPI_Datatype peano4::parallel::TreeEntry::getJoinDatatype |
( |
| ) |
|
|
static |
◆ getMaster()
int peano4::parallel::TreeEntry::getMaster |
( |
| ) |
const |
◆ getMultiscaleDataExchangeDatatype()
MPI_Datatype peano4::parallel::TreeEntry::getMultiscaleDataExchangeDatatype |
( |
| ) |
|
|
static |
◆ getSenderRank()
int peano4::parallel::TreeEntry::getSenderRank |
( |
| ) |
const |
- Returns
- The rank of the sender of an object. It only make ssense to call this routine after you've invoked receive with MPI_ANY_SOURCE.
Definition at line 137 of file TreeEntry.cpp.
◆ initDatatype()
void peano4::parallel::TreeEntry::initDatatype |
( |
| ) |
|
|
static |
Wrapper around getDatatype() to trigger lazy evaluation if we use the lazy initialisation.
Definition at line 142 of file TreeEntry.cpp.
◆ receive() [1/2]
◆ receive() [2/2]
◆ receiveAndPollDanglingMessages()
◆ send() [1/2]
In DaStGen (the first version), I had a non-static version of the send as well as the receive.
However, this did not work with newer C++11 versions, as a member function using this as pointer usually doesn't see the vtable while the init sees the object from outside, i.e. including a vtable. So this routine now is basically an alias for a blocking MPI_Send.
Definition at line 216 of file TreeEntry.cpp.
Referenced by sendAndPollDanglingMessages().
◆ send() [2/2]
Alternative to the other send() where I trigger a non-blocking send an then invoke the functor until the corresponding MPI_Test tells me that the message went through.
In systems with heavy MPI usage, this can help to avoid deadlocks.
Definition at line 228 of file TreeEntry.cpp.
◆ sendAndPollDanglingMessages()
◆ setId()
void peano4::parallel::TreeEntry::setId |
( |
int | value | ) |
|
◆ setMaster()
void peano4::parallel::TreeEntry::setMaster |
( |
int | value | ) |
|
◆ shutdownDatatype()
void peano4::parallel::TreeEntry::shutdownDatatype |
( |
| ) |
|
|
static |
◆ toString()
std::string peano4::parallel::TreeEntry::toString |
( |
| ) |
const |
◆ _id
int peano4::parallel::TreeEntry::_id |
|
private |
◆ _master
int peano4::parallel::TreeEntry::_master |
|
private |
◆ _senderDestinationRank
int peano4::parallel::TreeEntry::_senderDestinationRank |
|
private |
◆ Datatype
MPI_Datatype peano4::parallel::TreeEntry::Datatype = MPI_DATATYPE_NULL |
|
staticprivate |
Whenever we use LLVM's MPI extension (DaStGe), we rely on lazy initialisation of the datatype.
However, Peano calls init explicitly in most cases. Without the LLVM extension which caches the MPI datatype once constructed, this field stores the type.
Definition at line 144 of file TreeEntry.h.
The documentation for this struct was generated from the following files: