From 0970b68bc9c464189d38a0d0afce51f5c3cd8985 Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Tue, 5 May 2015 19:10:44 -0700 Subject: [PATCH] SetGroupName for mpi module --- src/mpi/model/distributed-simulator-impl.cc | 1 + src/mpi/model/granted-time-window-mpi-interface.cc | 1 + src/mpi/model/mpi-receiver.cc | 1 + src/mpi/model/null-message-simulator-impl.cc | 1 + src/mpi/model/remote-channel-bundle.cc | 1 + 5 files changed, 5 insertions(+) diff --git a/src/mpi/model/distributed-simulator-impl.cc b/src/mpi/model/distributed-simulator-impl.cc index abd3c5c0d..84bf9a251 100644 --- a/src/mpi/model/distributed-simulator-impl.cc +++ b/src/mpi/model/distributed-simulator-impl.cc @@ -83,6 +83,7 @@ DistributedSimulatorImpl::GetTypeId (void) { static TypeId tid = TypeId ("ns3::DistributedSimulatorImpl") .SetParent () + .SetGroupName ("Mpi") .AddConstructor () ; return tid; diff --git a/src/mpi/model/granted-time-window-mpi-interface.cc b/src/mpi/model/granted-time-window-mpi-interface.cc index f425ea089..dc94e7f70 100644 --- a/src/mpi/model/granted-time-window-mpi-interface.cc +++ b/src/mpi/model/granted-time-window-mpi-interface.cc @@ -93,6 +93,7 @@ GrantedTimeWindowMpiInterface::GetTypeId (void) { static TypeId tid = TypeId ("ns3::GrantedTimeWindowMpiInterface") .SetParent () + .SetGroupName ("Mpi") ; return tid; } diff --git a/src/mpi/model/mpi-receiver.cc b/src/mpi/model/mpi-receiver.cc index d51de89db..e500b73ec 100644 --- a/src/mpi/model/mpi-receiver.cc +++ b/src/mpi/model/mpi-receiver.cc @@ -25,6 +25,7 @@ MpiReceiver::GetTypeId (void) { static TypeId tid = TypeId ("ns3::MpiReceiver") .SetParent () + .SetGroupName ("Mpi") .AddConstructor (); return tid; } diff --git a/src/mpi/model/null-message-simulator-impl.cc b/src/mpi/model/null-message-simulator-impl.cc index 068959531..ce9479959 100644 --- a/src/mpi/model/null-message-simulator-impl.cc +++ b/src/mpi/model/null-message-simulator-impl.cc @@ -55,6 +55,7 @@ NullMessageSimulatorImpl::GetTypeId (void) { static TypeId tid = TypeId ("ns3::NullMessageSimulatorImpl") .SetParent () + .SetGroupName ("Mpi") .AddConstructor () .AddAttribute ("SchedulerTune", "Null Message scheduler tuning parameter", DoubleValue (1.0), diff --git a/src/mpi/model/remote-channel-bundle.cc b/src/mpi/model/remote-channel-bundle.cc index 6f789d9c7..aece437cd 100644 --- a/src/mpi/model/remote-channel-bundle.cc +++ b/src/mpi/model/remote-channel-bundle.cc @@ -34,6 +34,7 @@ TypeId RemoteChannelBundle::GetTypeId (void) { static TypeId tid = TypeId ("ns3::RemoteChannelBundle") .SetParent () + .SetGroupName ("Mpi") .AddConstructor (); return tid; }