我试图在这个简化的代码中实现的是:
- 2 种类型的进程(根和子进程,ids/rank 分别 = 10 和 0-9)
- 在里面:
- root 会听孩子“完成”
- 全部完成后,孩子们将收听根通知
- 虽然没有赢家(尚未全部完成):
- 孩子们将有 20% 的机会完成(并通知 root 他们完成了)
- root 将检查是否已完成
- 如果全部完成:向“获胜者”的孩子发送通知
我有如下代码:
int numprocs, id, arr[10], winner = -1;
bool stop = false;
MPI_Request reqs[10], winnerNotification;
MPI_Init(NULL, NULL);
MPI_Comm_size(MPI_COMM_WORLD, &numprocs);
MPI_Comm_rank(MPI_COMM_WORLD, &id);
for (int half = 0; half < 1; half++) {
for (int round = 0; round < 1; round++) {
if (id == 10) { // root
// keeps track of who has "completed"
fill_n(arr, 10, -1);
for (int i = 0; i < 10; i++) {
MPI_Irecv(&arr[i], 1, MPI_INT, i, 0, MPI_COMM_WORLD, &reqs[i]);
}
} else if (id < 10) { // children
// listen to root of winner notification/indication to stop
MPI_Irecv(&winner, 1, MPI_INT, 10, 1, MPI_COMM_WORLD, &winnerNotification);
}
while (winner == -1) {
//cout << id << " is in loop" << endl;
if (id < 10 && !stop && ((rand() % 10) + 1) < 3) {
// children has 20% chance to stop (finish work)
MPI_Send(&id, 1, MPI_INT, 10, 0, MPI_COMM_WORLD);
cout << id << " sending to root" << endl;
stop = true;
} else if (id == 10) {
// root checks number of children completed
int numDone = 0;
for (int i = 0; i < 10; i++) {
if (arr[i] >= 0) {
//cout << "root knows that " << i << " has completed" << endl;
numDone++;
}
}
cout << "numDone = " << numDone << endl;
// if all done, send notification to players to stop
if (numDone == 10) {
winner = 1;
for (int i = 0; i < 10; i++) {
MPI_Send(&winner, 1, MPI_INT, i, 1, MPI_COMM_WORLD);
}
cout << "root sent notification of winner" << endl;
}
}
}
}
}
MPI_Finalize();
调试cout
的输出看起来像:问题似乎是根没有收到所有孩子的通知,他们已经完成?
2 sending to root
3 sending to root
0 sending to root
4 sending to root
1 sending to root
8 sending to root
9 sending to root
numDone = 1
numDone = 1
... // many numDone = 1, but why 1 only?
7 sending to root
...
我想也许我无法接收到一个数组:但我试过了
if (id == 1) {
int x = 60;
MPI_Send(&x, 1, MPI_INT, 0, 0, MPI_COMM_WORLD);
} else if (id == 0) {
MPI_Recv(&arr[1], 1, MPI_INT, 1, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
cout << id << " recieved " << arr[1] << endl;
}
哪个有效。
更新
MPI_Barrier(MPI_COMM_WORLD)
如果我在 while 循环结束之前添加一个,这似乎可以解决,但为什么呢?即使进程不同步,最终,孩子们会向 root 发送他们已经完成的消息,并且 root 应该“倾听”并进行相应的处理?似乎正在发生的事情是 root 一直在运行,占用了所有资源供孩子们执行?或者这里发生了什么?
更新 2:一些孩子没有收到来自 root 的通知
好的,现在root没有收到@MichaelSh的回答完成的孩子的通知的问题,我专注于没有从父母那里收到的孩子。这是重现该问题的代码:
int numprocs, id, arr[10], winner = -1;
bool stop = false;
MPI_Request reqs[10], winnerNotification;
MPI_Init(NULL, NULL);
MPI_Comm_size(MPI_COMM_WORLD, &numprocs);
MPI_Comm_rank(MPI_COMM_WORLD, &id);
srand(time(NULL) + id);
if (id < 10) {
MPI_Irecv(&winner, 1, MPI_INT, 10, 0, MPI_COMM_WORLD, &winnerNotification);
}
MPI_Barrier(MPI_COMM_WORLD);
while (winner == -1) {
cout << id << " is in loop ..." << endl;
if (id == 10) {
if (((rand() % 10) + 1) < 2) {
winner = 2;
for (int i = 0; i < 10; i++) {
MPI_Send(&winner, 1, MPI_INT, i, 0, MPI_COMM_WORLD);
}
cout << "winner notifications sent" << endl;
}
}
}
cout << id << " b4 MPI_Finalize. winner is " << winner << endl;
MPI_Finalize();
输出如下所示:
# 1 run
winner notifications sent
10 b4 MPI_Finalize. winner is 2
9 b4 MPI_Finalize. winner is 2
0 b4 MPI_Finalize. winner is 2
# another run
winner notifications sent
10 b4 MPI_Finalize. winner is 2
8 b4 MPI_Finalize. winner is 2
注意到某些进程似乎没有收到来自父进程的通知?为什么会这样,MPI_Wait
因为子进程只会挂起它们?那么我该如何解决呢?
还
在您的情况下,一切
MPI_Barrier
都会 - 它等待子响应完成。请检查我的答案以获得更好的解决方案
如果我不这样做,我想每个孩子的反应只需要几毫秒?所以即使我不等待/障碍,我希望接收仍然会在发送后不久发生?除非进程最终占用资源并且其他进程无法运行?