我需要在我的矩阵乘法程序中使用 MPI_Gather 函数,但最近几天遇到了麻烦。
因此,我单独使用gather函数编写了一个简单的MPI程序,并一直试图让它运行......为此,我参考了“Peter Pacheco的并行编程简介”一书。
程序直接退出,绝对没有结果或错误……我到现在还没有弄清楚错误。
/******************NOTE**********************
The program simply uses the MPI_Gather() function.
The program is exiting directly.
I have written it for only TWO processes.
(-np 2)
******************************************/
#include<stdio.h>
#include"mpi.h"
int main()
{
int i,j,proc,rank;
double d[4];
double local_a[2];
MPI_Init(NULL,NULL);
MPI_Comm_size(MPI_COMM_WORLD, &proc);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
if(rank==0)
{
local_a[0]=1.0;
local_a[1]=2.0;
}
else
{
local_a[0]=3.0;
local_a[1]=4.0;
}
int local=2;
if(rank==0)
{
MPI_Gather(local_a,local,MPI_DOUBLE,d,local,MPI_DOUBLE,0,MPI_COMM_WORLD);
//MPI_Gather(&local_a,local,MPI_DOUBLE,&d,local,MPI_DOUBLE,0,MPI_COMM_WORLD);
//also tried the above line just to be certain.
printf("\n");
for(j=0;j<4;j++)
printf("\t%f",d[j]);
}
else
{
MPI_Gather(local_a,local,MPI_DOUBLE,d,local,MPI_DOUBLE,0,MPI_COMM_WORLD);
//MPI_Gather(&local_a,local,MPI_DOUBLE,&d,local,MPI_DOUBLE,0,MPI_COMM_WORLD);
}
MPI_Finalize();
return 0;
}
谁能帮帮我。
谢谢你。
阿纳迦马杜苏达南