我有一个分配,我需要使用OpenMPI,在这里我需要创建一种新类型的数据来发送消息,因此我用Google搜索并找到了一些东西。
按照教程后我做了这个:
typedef struct {
int a;
int b;
}SpecialData;
SpecialData p,q,vector[size];
MPI_Datatype tipSpecial , oldType[2];
int noBlocks[2];
MPI_Aint offsets[2],extent;
MPI_Init(&argc, &argv);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
MPI_Comm_size(MPI_COMM_WORLD, &size);
// setup the 7 double fields
offsets[0] = 0 ;
oldType[0] = MPI_DOUBLE;
noBlocks[0] = 7;
//setup the 4 int fields of the struct
MPI_Type_extent(MPI_DOUBLE, &extent);
offsets[1] = 8 * extent;
oldType[1] = MPI_INT;
noBlocks[1] = 4;
MPI_Type_struct(2, noBlocks, offsets, oldType, &tipSpecial);
MPI_Type_commit(&tipSpecial);
///... Some code here where I do things based on the rank.
p.a = 9;
p.b = 9;
MPI_Send(p, 1, tipSpecial, 0, tag, MPI_COMM_WORLD);
MPI_Recv(q,1, tipSpecial, 0, tag, MPI_COMM_WORLD, &status);
我在发送时收到错误,并在第一个参数时特别收到。
Error:
Main.c: In function ‘main’:
Main.c:125:3: error: incompatible type for argument 1 of ‘MPI_Send’
MPI_Send(p, 1, tipSpecial, 0, tag, MPI_COMM_WORLD);
知道为什么会这样吗?
答案 0 :(得分:2)
MPI_Send
和MPI_Recv
都希望指向数据缓冲区的指针作为它们的第一个参数。与数组不同,为了获得标量变量的地址,必须使用引用运算符&
:
MPI_Send(&p, 1, tipSpecial, 0, tag, MPI_COMM_WORLD);
// ^
MPI_Recv(&q, 1, tipSpecial, 0, tag, MPI_COMM_WORLD, &status);
// ^