我无法在hello world程序中输出正确数量的进程。我相当肯定这个程序应该有效,因为它是由我们正在使用的教科书提供的。代码如下:
#include <stdio.h>
#include <string.h>
#include <mpi.h>
const int MAX_STRING = 100;
int main(int argc, char * argv[])
{
char greeting[MAX_STRING];
int comm_sz;
int my_rank;
MPI_Init(NULL, NULL);
MPI_Comm_size(MPI_COMM_WORLD, &comm_sz);
MPI_Comm_rank(MPI_COMM_WORLD, &my_rank);
if (my_rank != 0)
{
sprintf(greeting, "Greetings from process %d of %d!\n", my_rank, comm_sz);
MPI_Send(greeting, strlen(greeting)+1, MPI_CHAR, 0, 0, MPI_COMM_WORLD);
}
else
{
printf("Greetings from process %d of %d!\n", my_rank, comm_sz);
for (int q = 1; q < comm_sz; q++)
{
MPI_Recv(greeting, MAX_STRING, MPI_CHAR, q, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
printf("%s\n", greeting);
}
}
MPI_Finalize();
return 0;
}
我正在通过运行
进行编译mpicxx hello_mpi.cpp -O3
编译好,然后按
执行mpiexec -n 4 ./a.out
使用4作为示例线程数。我应该收到输出
Greetings from process 0 of 4!
Greetings from process 1 of 4!
Greetings from process 2 of 4!
Greetings from process 3 of 4!
但我得到了
Greetings from process 0 of 1!
Greetings from process 0 of 1!
Greetings from process 0 of 1!
Greetings from process 0 of 1!
我不确定为什么我会从每个帖子中获得此结果而不是排名。同样,这是我们正在使用的教科书提供的代码(虽然最初是用C语言编写的,但我尝试在C中编译执行但遇到了同样的错误)。
有什么想法吗?