#include <mpi-interface.h>
Static Public Member Functions | |
static void | Destroy () |
static void | Disable () |
static void | Enable (int *pargc, char ***pargv) |
static uint32_t | GetRxCount () |
static uint32_t | GetSize () |
static uint32_t | GetSystemId () |
static uint32_t | GetTxCount () |
static bool | IsEnabled () |
static void | ReceiveMessages () |
static void | SendPacket (Ptr< Packet > p, const Time &rxTime, uint32_t node, uint32_t dev) |
static void | TestSendComplete () |
Static Private Attributes | |
static bool | m_enabled = false |
static bool | m_initialized = false |
static std::list< SentBuffer > | m_pendingTx |
static char ** | m_pRxBuffers |
static MPI_Request * | m_requests |
static uint32_t | m_rxCount = 0 |
static uint32_t | m_sid = 0 |
static uint32_t | m_size = 1 |
static uint32_t | m_txCount = 0 |
Interface between ns-3 and MPI
Definition at line 89 of file mpi-interface.h.
|
static |
Delete all buffers
Definition at line 87 of file mpi-interface.cc.
References GetSize(), m_pendingTx, m_pRxBuffers, and m_requests.
Referenced by ns3::DistributedSimulatorImpl::Destroy().
|
static |
Terminates the MPI environment by calling MPI_Finalize This function must be called after Destroy () It also resets m_initialized, m_enabled
Definition at line 288 of file mpi-interface.cc.
References m_enabled, m_initialized, and NS_FATAL_ERROR.
Referenced by main().
|
static |
pargc | number of command line arguments |
pargv | command line arguments |
Sets up MPI interface
Definition at line 147 of file mpi-interface.cc.
References GetSize(), m_enabled, m_initialized, m_pRxBuffers, m_requests, m_sid, m_size, ns3::MAX_MPI_MSG_SIZE, and NS_FATAL_ERROR.
Referenced by main().
|
static |
Definition at line 102 of file mpi-interface.cc.
References m_rxCount.
Referenced by ns3::DistributedSimulatorImpl::Run().
|
static |
Definition at line 125 of file mpi-interface.cc.
References ns3::Simulator::GetImplementation(), m_initialized, and m_size.
Referenced by ns3::DistributedSimulatorImpl::CalculateLookAhead(), Destroy(), ns3::DistributedSimulatorImpl::DistributedSimulatorImpl(), Enable(), main(), and ReceiveMessages().
|
static |
Definition at line 114 of file mpi-interface.cc.
References ns3::Simulator::GetImplementation(), m_initialized, and m_sid.
Referenced by ns3::DistributedSimulatorImpl::CalculateLookAhead(), ns3::DistributedSimulatorImpl::DistributedSimulatorImpl(), ns3::GlobalRouteManagerImpl::InitializeRoutes(), ns3::PointToPointHelper::Install(), and main().
|
static |
Definition at line 108 of file mpi-interface.cc.
References m_txCount.
Referenced by ns3::DistributedSimulatorImpl::Run().
|
static |
Definition at line 136 of file mpi-interface.cc.
References ns3::Simulator::GetImplementation(), m_enabled, and m_initialized.
Referenced by ns3::PointToPointHelper::Install().
|
static |
Check for received messages complete
Definition at line 205 of file mpi-interface.cc.
References ns3::Node::GetDevice(), ns3::Node::GetId(), ns3::Node::GetNDevices(), ns3::NodeList::GetNode(), GetSize(), m_pRxBuffers, m_requests, m_rxCount, ns3::MAX_MPI_MSG_SIZE, ns3::Simulator::Now(), NS_ASSERT, NS_FATAL_ERROR, ns3::MpiReceiver::Receive(), and ns3::Simulator::ScheduleWithContext().
Referenced by ns3::DistributedSimulatorImpl::Run().
|
static |
p | packet to send |
rxTime | received time at destination node |
node | destination node |
dev | destination device |
Serialize and send a packet to the specified node and net device
Definition at line 172 of file mpi-interface.cc.
References ns3::Time::GetNanoSeconds(), ns3::NodeList::GetNode(), ns3::Packet::GetSerializedSize(), ns3::Node::GetSystemId(), m_pendingTx, m_txCount, NS_FATAL_ERROR, and ns3::Packet::Serialize().
Referenced by ns3::PointToPointRemoteChannel::TransmitStart().
|
static |
Check for completed sends
Definition at line 266 of file mpi-interface.cc.
References current, m_pendingTx, and NS_FATAL_ERROR.
Referenced by ns3::DistributedSimulatorImpl::Run().
|
staticprivate |
Definition at line 157 of file mpi-interface.h.
Referenced by Disable(), Enable(), and IsEnabled().
|
staticprivate |
Definition at line 156 of file mpi-interface.h.
Referenced by Disable(), Enable(), GetSize(), GetSystemId(), and IsEnabled().
|
staticprivate |
Definition at line 166 of file mpi-interface.h.
Referenced by Destroy(), SendPacket(), and TestSendComplete().
|
staticprivate |
Definition at line 163 of file mpi-interface.h.
Referenced by Destroy(), Enable(), and ReceiveMessages().
|
staticprivate |
Definition at line 160 of file mpi-interface.h.
Referenced by Destroy(), Enable(), and ReceiveMessages().
|
staticprivate |
Definition at line 152 of file mpi-interface.h.
Referenced by GetRxCount(), and ReceiveMessages().
|
staticprivate |
Definition at line 148 of file mpi-interface.h.
Referenced by Enable(), and GetSystemId().
|
staticprivate |
Definition at line 149 of file mpi-interface.h.
|
staticprivate |
Definition at line 155 of file mpi-interface.h.
Referenced by GetTxCount(), and SendPacket().