1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
|
/*
Ray
Copyright (C) 2011, 2012 Sébastien Boisvert
http://DeNovoAssembler.SourceForge.Net/
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, version 3 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You have received a copy of the GNU General Public License
along with this program (gpl-3.0.txt).
see <http://www.gnu.org/licenses/>
*/
#include "NetworkTest.h"
#include <code/Mock/constants.h>
#include <RayPlatform/communication/Message.h>
#include <RayPlatform/communication/mpi_tags.h>
#include <RayPlatform/core/slave_modes.h>
#include <RayPlatform/core/master_modes.h>
#include <RayPlatform/core/OperatingSystem.h>
#include <RayPlatform/core/statistics.h>
#include <RayPlatform/core/ComputeCore.h>
#include <iostream>
#include <fstream>
#include <sstream>
#include <stdlib.h>
using namespace std;
__CreatePlugin(NetworkTest);
__CreateMasterModeAdapter(NetworkTest,RAY_MASTER_MODE_TEST_NETWORK);
__CreateSlaveModeAdapter(NetworkTest,RAY_SLAVE_MODE_TEST_NETWORK);
__CreateMessageTagAdapter(NetworkTest,RAY_MPI_TAG_TEST_NETWORK_MESSAGE);
#define LATENCY_INFORMATION_NOT_AVAILABLE 123123123
#define __MAXIMUM_LATENCY 4096 // microseconds
/** initialize the NetworkTest */
void NetworkTest::constructor(int rank,int size,StaticVector*inbox,StaticVector*outbox,Parameters*parameters,RingAllocator*outboxAllocator,
string*name,TimePrinter*timePrinter){
m_timePrinter=timePrinter;
m_name=name;
m_inbox=inbox;
m_outbox=outbox;
m_parameters=parameters;
m_initialisedNetworkTest=false;
m_size=size;
m_rank=rank;
m_ranksFinished=0;
m_askedToWriteFiles=false;
int ranksPerNode=8;
int onlineRanksPerNode=8; // default: 8
if((m_rank % ranksPerNode) >= onlineRanksPerNode)
m_numberOfTestMessages=0;
m_currentTestMessage=0;
m_sentCurrentTestMessage=false;
m_outboxAllocator=outboxAllocator;
/* a word is 8 bytes */
/* MAXIMUM_MESSAGE_SIZE_IN_BYTES is 4000 per default so
numberOfWords must be <= 500 */
/* this is only for the network test */
/* default is 500 */
m_numberOfWords=500;
m_messagesPerRank=1000;
if(m_parameters->hasConfigurationOption("-exchanges",1))
m_messagesPerRank=m_parameters->getConfigurationInteger("-exchanges",0);
m_numberOfTestMessages=m_messagesPerRank;
m_writeRawData=m_parameters->hasOption("-write-network-test-raw-data");
/* the seed must be different for all MPI ranks */
srand(time(NULL)*(1+m_rank));
// reserve space to have constant insertion
m_sentMicroseconds.reserve(m_numberOfTestMessages);
m_destinations.reserve(m_numberOfTestMessages);
m_receivedMicroseconds.reserve(m_numberOfTestMessages);
}
/** call the slave method
*
* To test the network:
*
* n=1000
*
* i=n
* while i--
* destination <- random folk
* send full message to destination
* start timer
* receive message
* stop timer
* diff=stop-start
* sum+=diff
*
*
* if rank==0
*
* write this information to a file.
*
* */
void NetworkTest::call_RAY_SLAVE_MODE_TEST_NETWORK(){
if(!m_started){
m_started=true;
bool skip=false;
if(m_parameters->hasOption("-skip-network-test"))
skip=true;
if(m_parameters->hasOption("-disable-network-test"))
skip=true;
if(skip)
m_switchMan->closeSlaveModeLocally(m_outbox,m_parameters->getRank());
}
#ifdef CONFIG_ASSERT
assert(m_numberOfWords*sizeof(MessageUnit) <= MAXIMUM_MESSAGE_SIZE_IN_BYTES);
#endif
if(m_currentTestMessage<m_numberOfTestMessages){
if(!m_sentCurrentTestMessage){
if(m_currentTestMessage==0)
m_sentData=false;
LargeCount startingTimeMicroseconds=getMicroseconds();
/** send to a random rank */
Rank destination=rand()%m_size;
m_sentMicroseconds.push_back(startingTimeMicroseconds);
m_destinations.push_back(destination);
MessageUnit *message=(MessageUnit*)m_outboxAllocator->allocate(m_numberOfWords*sizeof(MessageUnit));
message[0]=destination;
Message aMessage(message,m_numberOfWords,destination,RAY_MPI_TAG_TEST_NETWORK_MESSAGE,m_rank);
m_outbox->push_back(&aMessage);
m_sentCurrentTestMessage=true;
#ifdef CONFIG_DEBUG_NETWORK_TEST_PLUGIN
cout<<"[NetworkTest.plugin] Rank "<<m_rank<<" sends RAY_MPI_TAG_TEST_NETWORK_MESSAGE to "<<destination<<endl;
#endif
}else if(m_inbox->size()>0 && m_inbox->at(0)->getTag()==RAY_MPI_TAG_TEST_NETWORK_MESSAGE_REPLY){
LargeCount endingMicroSeconds=getMicroseconds();
#ifdef CONFIG_DEBUG_NETWORK_TEST_PLUGIN
Message*message=m_inbox->at(0);
Rank source=message->getSource();
cout<<"[NetworkTest.plugin] Rank "<<m_rank<<" receives RAY_MPI_TAG_TEST_NETWORK_MESSAGE_REPLY from "<<source<<endl;
#endif
m_receivedMicroseconds.push_back(endingMicroSeconds);
m_sentCurrentTestMessage=false;
if(m_currentTestMessage % m_messagesPerRank == 0){
cout<<"Rank "<<m_rank<<" is testing the network ["<<m_currentTestMessage<<"/";
cout<<m_numberOfTestMessages<<"]"<<endl;
}
m_currentTestMessage++;
}
}else if(!m_sentData){
cout<<"Rank "<<m_rank<<" is testing the network ["<<m_currentTestMessage<<"/";
cout<<m_numberOfTestMessages<<"]"<<endl;
// we finished gathering data.
// now we compute the mode for the latency
int modeLatency=getModeLatency();
int averageLatency=getAverageLatency();
cout<<"Rank "<<m_rank<<": mode round trip latency when requesting a reply for a message of "<<sizeof(MessageUnit)*m_numberOfWords<<" bytes is "<<modeLatency<<" microseconds (10^-6 seconds)"<<endl;
cout<<"Rank "<<m_rank<<": average round trip latency when requesting a reply for a message of "<<sizeof(MessageUnit)*m_numberOfWords<<" bytes is "<<averageLatency<<" microseconds (10^-6 seconds)"<<endl;
MessageUnit*message=(MessageUnit*)m_outboxAllocator->allocate(MAXIMUM_MESSAGE_SIZE_IN_BYTES);
int position=0;
message[position++]=modeLatency;
message[position++]=averageLatency;
char*destination=(char*)(message+position);
strcpy(destination,m_name->c_str());
Message aMessage(message,MAXIMUM_MESSAGE_SIZE_IN_BYTES/sizeof(MessageUnit),
MASTER_RANK,RAY_MPI_TAG_TEST_NETWORK_REPLY,m_rank);
m_outbox->push_back(&aMessage);
m_sentData=true;
m_gotResponse=false;
}else if(m_inbox->hasMessage(RAY_MPI_TAG_TEST_NETWORK_REPLY_REPLY)){
m_gotResponse=true;
}else if(m_gotResponse && m_inbox->hasMessage(RAY_MPI_TAG_TEST_NETWORK_WRITE_DATA)){
// we only write the files, if any, when everyone is done with it
// otherwise, the measured latency would be higher...
writeData();
m_switchMan->closeSlaveModeLocally(m_outbox,m_parameters->getRank());
}
}
void NetworkTest::writeData(){
/* nothing to write */
if(m_sentMicroseconds.size() == 0)
return;
if(m_writeRawData){
ostringstream file;
file<<m_parameters->getPrefix();
file<<"Rank"<<m_parameters->getRank()<<".NetworkTestData.txt";
cout<<"Rank "<<m_parameters->getRank()<<" is writing "<<file.str()<<" (-write-network-test-raw-data)"<<endl;
ofstream f(file.str().c_str());
f<<"# tag for test messages: RAY_MPI_TAG_TEST_NETWORK_MESSAGE"<<endl;
f<<"# tag for reply messages: RAY_MPI_TAG_TEST_NETWORK_MESSAGE_REPLY"<<endl;
f<<"# number of words per message: "<<m_numberOfWords<<endl;
f<<"# word size in bytes: "<<sizeof(MessageUnit)<<endl;
f<<"# number of bytes for test messages: "<<m_numberOfWords*sizeof(MessageUnit)<<endl;
f<<"# number of bytes for reply messages: 0"<<endl;
f<<"# number of test messages: "<<m_numberOfTestMessages<<endl;
f<<"# mode latency measured in microseconds: "<<getModeLatency()<<endl;
f<<"# average latency measured in microseconds: "<<getAverageLatency()<<endl;
f<<"# next line contains column names"<<endl;
f<<"# TestMessage SourceRank DestinationRank QueryTimeInMicroseconds ReplyTimeInMicroseconds Latency MessagesSentToDestination"<<endl;
#ifdef CONFIG_ASSERT
assert(m_sentMicroseconds.size() == m_destinations.size());
assert(m_sentMicroseconds.size() == m_receivedMicroseconds.size());
assert((int) m_sentMicroseconds.size() == m_numberOfTestMessages);
#endif
map<int,int> counters;
for(int i=0;i<(int)m_sentMicroseconds.size();i++){
LargeCount time1=m_sentMicroseconds[i];
LargeCount time2=m_receivedMicroseconds[i];
int destination=m_destinations[i];
counters[destination] ++ ;
f<<i<<" "<<" "<<m_parameters->getRank()<<" "<<destination<<" "<<time1<<" "<<time2<<" "<<time2-time1<<" "<<counters[destination]<<endl;
}
f.close();
ostringstream file2;
file2<<m_parameters->getPrefix();
file2<<"Rank"<<m_parameters->getRank()<<".NetworkTestDataCount.txt";
ofstream f2(file2.str().c_str());
f2<<"# DestinationRank MessagesSentToDestination"<<endl;
for(map<int,int>::iterator i=counters.begin();i!=counters.end();i++){
f2<<i->first<<" "<<i->second<<endl;
}
f2.close();
}
m_destinations.clear();
m_sentMicroseconds.clear();
m_receivedMicroseconds.clear();
}
/** call the master method */
void NetworkTest::call_RAY_MASTER_MODE_TEST_NETWORK (){
if(!m_initialisedNetworkTest){
cout<<"Rank 0: testing the network, please wait..."<<endl;
cout<<endl;
m_switchMan->openMasterMode(m_outbox,m_rank);
m_initialisedNetworkTest=true;
}else if(m_inbox->size()>0&&(*m_inbox)[0]->getTag()==RAY_MPI_TAG_TEST_NETWORK_REPLY){
Message*message=m_inbox->at(0);
Rank rank=m_inbox->at(0)->getSource();
int inputPosition=0;
int modeLatency=message->getBuffer()[inputPosition++];
int averageLatency=message->getBuffer()[inputPosition++];
MessageUnit*buffer=m_inbox->at(0)->getBuffer();
char*name=(char*)(buffer+inputPosition);
string stringName=name;
m_names[rank]=stringName;
m_modeLatencies[rank]=modeLatency;
m_averageLatencies[rank]=averageLatency;
m_switchMan->sendEmptyMessage(m_outbox,m_rank,rank,RAY_MPI_TAG_TEST_NETWORK_REPLY_REPLY);
m_ranksFinished++;
}else if(m_switchMan->allRanksAreReady()){
ostringstream file;
file<<m_parameters->getPrefix();
file<<"NetworkTest.txt";
ofstream f(file.str().c_str());
f<<"# average and mode round trip latency in microseconds (10^-6 seconds) when requesting a reply for a message of "<<sizeof(MessageUnit)*m_numberOfWords<<" bytes"<<endl;
f<<"# MessagePassingInterfaceRank\tName\tModeLatencyInMicroseconds";
f<<" AverageLatencyInMicroseconds";
f<<" NumberOfExchanges"<<endl;
vector<int> latencies;
for(Rank i=0;i<m_size;i++){
int latency=m_averageLatencies[i];
if(latency!=LATENCY_INFORMATION_NOT_AVAILABLE && latency <= __MAXIMUM_LATENCY)
latencies.push_back(latency);
}
f<<"# AverageForAllRanks: "<<getAverage(&latencies)<<endl;
f<<"# StandardDeviation: "<<getStandardDeviation(&latencies)<<endl;
for(Rank i=0;i<m_size;i++){
int modeLatency=m_modeLatencies[i];
int averageLatency=m_averageLatencies[i];
if(modeLatency==LATENCY_INFORMATION_NOT_AVAILABLE){
f<<i<<"\t"<<m_names[i]<<"\tLATENCY_INFORMATION_NOT_AVAILABLE";
f<<"LATENCY_INFORMATION_NOT_AVAILABLE";
}else{
f<<i<<"\t"<<m_names[i]<<"\t"<<modeLatency;
f<<" "<<averageLatency;
}
f<<" "<<m_numberOfTestMessages<<endl;
}
f.close();
m_modeLatencies.clear();
m_averageLatencies.clear();
m_switchMan->closeMasterMode();
cout<<endl;
cout<<"Rank "<<m_parameters->getRank()<<" wrote "<<file.str()<<endl;
cout<<endl;
m_timePrinter->printElapsedTime("Network testing");
cout<<endl;
if(m_parameters->hasOption("-test-network-only")){
m_switchMan->setMasterMode(RAY_MASTER_MODE_KILL_ALL_MPI_RANKS);
return;
}
/* no files */
if(m_parameters->getNumberOfFiles()==0){
if(!m_parameters->hasOption("-run-surveyor")) {
cout<<"Rank "<<m_parameters->getRank()<<": no input files, aborting."<<endl;
}
m_switchMan->setMasterMode(RAY_MASTER_MODE_KILL_ALL_MPI_RANKS);
}
}else if(m_ranksFinished==m_size && !m_askedToWriteFiles){
m_switchMan->sendToAll(m_outbox,m_parameters->getRank(),RAY_MPI_TAG_TEST_NETWORK_WRITE_DATA);
m_askedToWriteFiles=true;
}
}
int NetworkTest::getAverageLatency(){
uint64_t sum=0;
int count=0;
for(int i=0;i<m_numberOfTestMessages;i++){
int latency=m_receivedMicroseconds[i]-m_sentMicroseconds[i];
if(latency<=__MAXIMUM_LATENCY){
sum+=latency;
count++;
}
}
if(count)
return sum / count;
return count;
}
int NetworkTest::getModeLatency(){
map<int,int> data;
int maxLatency=LATENCY_INFORMATION_NOT_AVAILABLE;
for(int i=0;i<(int)m_receivedMicroseconds.size();i++){
int latency=m_receivedMicroseconds[i]-m_sentMicroseconds[i];
data[latency]++;
if(data.count(maxLatency)==0 || data[latency] > data[maxLatency])
maxLatency=latency;
}
return maxLatency;
}
void NetworkTest::setSwitchMan(SwitchMan*a){
m_switchMan=a;
}
/* we reply with an empty message */
void NetworkTest::call_RAY_MPI_TAG_TEST_NETWORK_MESSAGE(Message*message){
Rank source=message->getSource();
#ifdef CONFIG_DEBUG_NETWORK_TEST_PLUGIN
cout<<"[NetworkTest.plugin] Rank "<<m_rank<<" receives RAY_MPI_TAG_TEST_NETWORK_MESSAGE from "<<source<<endl;
#endif
Message aMessage(NULL,0,source,RAY_MPI_TAG_TEST_NETWORK_MESSAGE_REPLY,m_rank);
m_outbox->push_back(&aMessage);
#ifdef CONFIG_DEBUG_NETWORK_TEST_PLUGIN
cout<<"[NetworkTest.plugin] Rank "<<m_rank<<" sends RAY_MPI_TAG_TEST_NETWORK_MESSAGE_REPLY to "<<source<<endl;
#endif
}
void NetworkTest::registerPlugin(ComputeCore*core){
PluginHandle plugin = core->allocatePluginHandle();
m_plugin=plugin;
core->setPluginName(plugin,"NetworkTest");
core->setPluginDescription(plugin,"This is a plugin used to test the network latency.");
core->setPluginAuthors(plugin,"Sébastien Boisvert");
core->setPluginLicense(plugin,"GNU General Public License version 3");
RAY_SLAVE_MODE_TEST_NETWORK=core->allocateSlaveModeHandle(plugin);
core->setSlaveModeObjectHandler(plugin,RAY_SLAVE_MODE_TEST_NETWORK, __GetAdapter(NetworkTest,RAY_SLAVE_MODE_TEST_NETWORK));
core->setSlaveModeSymbol(plugin,RAY_SLAVE_MODE_TEST_NETWORK,"RAY_SLAVE_MODE_TEST_NETWORK");
RAY_MASTER_MODE_TEST_NETWORK=core->allocateMasterModeHandle(plugin);
core->setMasterModeObjectHandler(plugin,RAY_MASTER_MODE_TEST_NETWORK, __GetAdapter(NetworkTest,RAY_MASTER_MODE_TEST_NETWORK));
core->setMasterModeSymbol(plugin,RAY_MASTER_MODE_TEST_NETWORK,"RAY_MASTER_MODE_TEST_NETWORK");
RAY_MPI_TAG_TEST_NETWORK_MESSAGE=core->allocateMessageTagHandle(plugin);
core->setMessageTagObjectHandler(plugin,RAY_MPI_TAG_TEST_NETWORK_MESSAGE, __GetAdapter(NetworkTest,RAY_MPI_TAG_TEST_NETWORK_MESSAGE));
core->setMessageTagSymbol(plugin,RAY_MPI_TAG_TEST_NETWORK_MESSAGE,"RAY_MPI_TAG_TEST_NETWORK_MESSAGE");
RAY_MPI_TAG_TEST_NETWORK=core->allocateMessageTagHandle(plugin);
core->setMessageTagSymbol(plugin,RAY_MPI_TAG_TEST_NETWORK,"RAY_MPI_TAG_TEST_NETWORK");
RAY_MPI_TAG_TEST_NETWORK_MESSAGE_REPLY=core->allocateMessageTagHandle(plugin);
core->setMessageTagSymbol(plugin,RAY_MPI_TAG_TEST_NETWORK_MESSAGE_REPLY,"RAY_MPI_TAG_TEST_NETWORK_MESSAGE_REPLY");
RAY_MPI_TAG_TEST_NETWORK_REPLY=core->allocateMessageTagHandle(plugin);
core->setMessageTagSymbol(plugin,RAY_MPI_TAG_TEST_NETWORK_REPLY,"RAY_MPI_TAG_TEST_NETWORK_REPLY");
RAY_MPI_TAG_TEST_NETWORK_REPLY_REPLY=core->allocateMessageTagHandle(plugin);
core->setMessageTagSymbol(plugin,RAY_MPI_TAG_TEST_NETWORK_REPLY_REPLY,"RAY_MPI_TAG_TEST_NETWORK_REPLY_REPLY");
RAY_MPI_TAG_TEST_NETWORK_WRITE_DATA=core->allocateMessageTagHandle(plugin);
core->setMessageTagSymbol(plugin,RAY_MPI_TAG_TEST_NETWORK_WRITE_DATA,"RAY_MPI_TAG_TEST_NETWORK_WRITE_DATA");
}
void NetworkTest::resolveSymbols(ComputeCore*core){
RAY_SLAVE_MODE_TEST_NETWORK=core->getSlaveModeFromSymbol(m_plugin,"RAY_SLAVE_MODE_TEST_NETWORK");
RAY_MASTER_MODE_COUNT_FILE_ENTRIES=core->getMasterModeFromSymbol(m_plugin,"RAY_MASTER_MODE_COUNT_FILE_ENTRIES");
RAY_MASTER_MODE_KILL_ALL_MPI_RANKS=core->getMasterModeFromSymbol(m_plugin,"RAY_MASTER_MODE_KILL_ALL_MPI_RANKS");
RAY_MASTER_MODE_TEST_NETWORK=core->getMasterModeFromSymbol(m_plugin,"RAY_MASTER_MODE_TEST_NETWORK");
RAY_MPI_TAG_TEST_NETWORK_MESSAGE=core->getMessageTagFromSymbol(m_plugin,"RAY_MPI_TAG_TEST_NETWORK_MESSAGE");
RAY_MPI_TAG_TEST_NETWORK_MESSAGE_REPLY=core->getMessageTagFromSymbol(m_plugin,"RAY_MPI_TAG_TEST_NETWORK_MESSAGE_REPLY");
RAY_MPI_TAG_TEST_NETWORK_REPLY=core->getMessageTagFromSymbol(m_plugin,"RAY_MPI_TAG_TEST_NETWORK_REPLY");
RAY_MPI_TAG_TEST_NETWORK_REPLY_REPLY=core->getMessageTagFromSymbol(m_plugin,"RAY_MPI_TAG_TEST_NETWORK_REPLY_REPLY");
RAY_MPI_TAG_TEST_NETWORK_WRITE_DATA=core->getMessageTagFromSymbol(m_plugin,"RAY_MPI_TAG_TEST_NETWORK_WRITE_DATA");
RAY_MPI_TAG_TEST_NETWORK=core->getMessageTagFromSymbol(m_plugin,"RAY_MPI_TAG_TEST_NETWORK");
core->setMasterModeToMessageTagSwitch(m_plugin,RAY_MASTER_MODE_TEST_NETWORK, RAY_MPI_TAG_TEST_NETWORK);
core->setMessageTagToSlaveModeSwitch(m_plugin,RAY_MPI_TAG_TEST_NETWORK, RAY_SLAVE_MODE_TEST_NETWORK);
core->setMessageTagReplyMessageTag(m_plugin, RAY_MPI_TAG_TEST_NETWORK_MESSAGE,RAY_MPI_TAG_TEST_NETWORK_MESSAGE_REPLY );
core->setMasterModeNextMasterMode(m_plugin,RAY_MASTER_MODE_TEST_NETWORK,RAY_MASTER_MODE_COUNT_FILE_ENTRIES);
m_started=false;
__BindPlugin(NetworkTest);
__BindAdapter(NetworkTest,RAY_MASTER_MODE_TEST_NETWORK);
__BindAdapter(NetworkTest,RAY_MPI_TAG_TEST_NETWORK_MESSAGE);
__BindAdapter(NetworkTest,RAY_SLAVE_MODE_TEST_NETWORK);
}
#undef __MAXIMUM_LATENCY /**/
|