1

我正在尝试使用 scanf 编写 MPI 代码,它将单独为所有进程获取输入,但只有一个进程从用户那里获取输入,而其他进程将垃圾值分配给该变量。程序如下

#include <stdlib.h>
#include <stdio.h>
#include "mpi.h"
#include<string.h>

int main(int argc, char* argv[]) 
{
int i, size, rank;
int arr;
MPI_Init(&argc, &argv);
MPI_Comm_size(MPI_COMM_WORLD, &size);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
printf("Enter the number\n");
scanf("%d",&i);

printf("%d\n",i);
MPI_Finalize();
exit(0);
}
4

2 回答 2

1

stdio 不是为并行设计的。您可能会注意到,每次运行问题时,它可能会给出不同的输出。通常,我们输入 node0 然后 bcast 到所有 oth

于 2013-09-15T13:32:10.553 回答
1

stdin 仅转发到 0 级。无论如何,从 stdin 读取是一个大写 VERY 的坏主意,并且不受标准支持。

于 2013-09-15T14:05:08.073 回答