Следующий код является реализацией шаблона Master / Worker.
Ibcast используется для увольнения всех работников, поскольку мы не знаем масштаб проблемы в начале программы.
MPI_Waitany () используется для ожидания на Irecv получения новых данных и Ibcast для завершения программы.
Проблема в том, что MPI_Waitany блокируется после получения всех MPI_Send () от мастера. Так что MPI_Ibcast () не возвращает блокировку
if (myid == 0) { //Master
bool test = false;
MPI_Request mpi_request;
for (int i = 0; i < 10; ++i) {
//Sending I 1..10 to Worker
MPI_Send(&i, 1, MPI_INT, 1, 10, MPI_COMM_WORLD);
cout << "Sending: " << i << endl;
}
cout << "Bcast Worker finished" << endl;
//Only to show even if the Bcast ist fired after worker is finished.
sleep(10);
//Using Ibcast for because Bcast can not Send to Ibcast in worker.
MPI_Ibcast(&test, 1, MPI_C_BOOL, 0, MPI_COMM_WORLD, &mpi_request);
MPI_Wait(&mpi_request, MPI_STATUS_IGNORE);
cout << "Root Fin" << endl;
} else { //Worker
while (true) {
bool test = true;
int i = 20;
MPI_Request mpi_request[2];
MPI_Ibcast(&test, 1, MPI_C_BOOL, 0, MPI_COMM_WORLD, &mpi_request[0]);
MPI_Irecv(&i, 1, MPI_INT, 0, 10, MPI_COMM_WORLD, &mpi_request[1]);
int RequestID = 0;
//Wait passes 10 Times for Send
//Wait can not pass after work is done.
MPI_Waitany(2, mpi_request, &RequestID, MPI_STATUS_IGNORE);
cout << "The \'I\' i got is: " << i <<" The Boolean is:" << test << endl;
if (!test)
break;
}
}
//OUTPUT
//Sending: 0
//Sending: 1
//Sending: 2
//Sending: 3
//Sending: 4
//Sending: 5
//Sending: 6
//Sending: 7
//Sending: 8
//The 'I' i got is: 0 The Boolean is:1
//The 'I' i got is: 1 The Boolean is:1
//Sending: 9
//Bcast Worker finished
//The 'I' i got is: 2 The Boolean is:1
//Root Fin
//The 'I' i got is: 3 The Boolean is:1
//The 'I' i got is: 4 The Boolean is:1
//The 'I' i got is: 5 The Boolean is:1
//The 'I' i got is: 6 The Boolean is:1
//The 'I' i got is: 7 The Boolean is:1
//The 'I' i got is: 8 The Boolean is:1
//The 'I' i got is: 9 The Boolean is:1
//No more output Programm is not Terminating and stuck in MPI_Waitany();
Ниже приведен более простой пример, когда работает разблокировка.
if (myid == 0) {
bool test = false;
MPI_Request mpi_request;
MPI_Ibcast(&test, 1, MPI_C_BOOL, 0, MPI_COMM_WORLD, &mpi_request);
MPI_Wait(&mpi_request, MPI_STATUS_IGNORE);
cout << "Root Fin" << endl;
} else {
bool test = true;
cout << "Value is:" << test << endl;
int i = 20;
MPI_Request mpi_request[2];
sleep(2);
MPI_Ibcast(&test, 1, MPI_C_BOOL, 0, MPI_COMM_WORLD, &mpi_request[0]);
MPI_Irecv(&i, 1, MPI_INT, 0, 10, MPI_COMM_WORLD, &mpi_request[1]);
int RequestID = 0;
sleep(2);
MPI_Waitany(2, mpi_request, &RequestID, MPI_STATUS_IGNORE);
//Should Print 0 in Begining is 1
cout << "Value is:" << test << endl;
}
//OUTPUT
//Value is:1
//Root Fin
//Value is:0