MPI数据类型对齐

时间:2018-06-20 20:09:16

标签: c mpi

我正在编写示例代码,但无法发送和接收相同的值。

我创建的数据类型是

typedef struct customData{
    double iv;
    double dv[5];
    char cv[10];
} customData;


我在此处创建数据类型

MPI_Datatype type;
MPI_Datatype ctype[3] = {MPI_DOUBLE, MPI_DOUBLE, MPI_CHAR};
int blocklen[3] = {1, 5, 10};
MPI_Aint disp[3] = { 0, sizeof(double), sizeof(double)*6 };

MPI_Type_create_struct(1, blocklen, disp, ctype, &type);
MPI_Type_commit(&type);


发送和接收

if(rank == 0){
    customData data = {5, 
            {1,2,3,4,5}, 
            {'h','d','h','a','q','w','e','s','l','z'}};
    printf("%f %.2f %c\n", data.iv, data.dv[0], data.cv[0]);

    MPI_Send(&data, 1, type, 1, 0, MPI_COMM_WORLD);     
} else {
    customData recv;
    MPI_Status status;
    MPI_Recv(&recv, 1, type, 0, 0, MPI_COMM_WORLD, &status);
    printf("%f %.2f %c\n", recv.iv, recv.dv[0], recv.cv[0]);
}

输出为
5.000000 1.00小时
5.000000 0.00�

1 个答案:

答案 0 :(得分:1)

您应在MPI_Type_create_struct的结构中放入元素个数,而不是1,而不是3。

MPI_Type_create_struct(3, blocklen, disp, ctype, &type);

我测试了,然后得到了

5.000000 1.00 h
5.000000 1.00 h

此处的一些信息:

Druid

Trouble Understanding MPI_Type_create_struct