我在c学习mpi通讯。尝试使用MPI_Isend从一个节点发送消息并在另一个节点上使用MPI_Irecv接收消息时遇到问题。这是代码:
#include <stdlib.h>
#include <stdio.h>
#include <mpi.h>
#include <string.h>
#define TAG 3
#define ROOT 0
int main (int argc, char ** argv){
int number_of_proc = 0;
int rank = 0;
// initialize mpi environment
MPI_Init(NULL, NULL);
// get the number of processes
MPI_Comm_size(MPI_COMM_WORLD, &number_of_proc);
// get the rank of this process
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
if (rank == 1){
// the message i want to send to the other node
int message = 123;
MPI_Request success_send = MPI_REQUEST_NULL;
// send message to the root node
MPI_Isend(&message, 1, MPI_INT, ROOT, TAG, MPI_COMM_WORLD, &success_send);
// to check if the node keeps running after sending the message
printf("Node 1 still working\n");
} else if (rank == ROOT){
printf("Node 0:%10d Nodes total\n", number_of_proc);
int message = 0;
MPI_Request success_received = MPI_REQUEST_NULL;
// receive the message from node 1
MPI_Irecv(&message, 1, MPI_INT, MPI_ANY_SOURCE, TAG, MPI_COMM_WORLD, &success_received);
printf("Node 0: greetings from node 1: %10d\n", message);
}
MPI_Finalize();
return EXIT_SUCCESS;
}
该文件名为mpitest.c。我使用mpicc -pedantic -Wall -std=c99 -o mpitest mpitest.c
进行编译,然后使用mpirun -c 2 ./mpitest
启动它。
预期输出
Node 1 still working
Node 0: 2 Nodes total
Node 0: greetings from node 1: 123
但我正在
Node 1 still working
Node 0: 2 Nodes total
Node 0: greetings from node 1: 0
我做错了什么?
答案 0 :(得分:2)
试试这个。您正在使用非阻塞通信,因此您必须等待接收操作的结束。
MPI_Irecv(&message, 1, MPI_INT, MPI_ANY_SOURCE, TAG, MPI_COMM_WORLD, &success_received);
MPI_Status status;
MPI_Wait(&success_received, &status);
答案 1 :(得分:1)
它没有阻挡!
您不知道何时收到MPI_Irec(..)
上的数据会立即返回,因为其非阻止。你需要等到数据写完。
您需要测试并检查状态。(循环中)
在线查看MPI_Test
和MPI_Wait
。
快乐的并行编程。