我可以创建一个存储数据的结构并通过MPI发送吗?

时间:2015-04-16 11:44:38

标签: c struct mpi

我尝试并行化运行图像的进程,并且图像进行基本操作。 我尝试通过如下定义的MPI发送结构:

像素的结构:

 typedef struct
{       
        unsigned char R;   
        unsigned char G;    
        unsigned char B;    
}pixel;

发送MPI()的结构

typedef struct     
{   
    pixel *vec; // pixels for process 3 bytes multiply qty     
    int qty; // count datas     
    int aux; // init      
 } Estructura;    

我是新手使用MPI库在分布式应用程序中运行,我之前使用过它,但没有创建结构类型。 我不确定这是否是我应遵循的程序。

有人可以向我解释如何准备结构 Estructura 来发送吗?

int lens[4]={1,1,1,1};  
MPI_Aint  disps[4];    
MPI_Datatype oldtypes[3], point_type;   
disps[0] = 0; oldtypes[0] = MPI_UNSIGNED;    
disps[1] = &pixel.G - &pixel; oldtypes[1] = MPI_UNSIGNED;    
disps[2] =  &pixel.B - &pixel.G; oldtypes[2] = MPI_UNSIGNED;   
disps[3] = sizeof(pixel); oldtype[3] = MPI_UB;    
MPI_Type_create_struct(3, lens, disps, oldtypes, &point_type);    
MPI_Type_commit(&point_type);                 

准备接收数据

MPI_Status status;                   
MPI_Probe(source, tag, comm, &status);                
MPI_Get_count(&status, point_type, &column.nz);                   
    if (nz == MPI_UNDEFINED)     
MPI_Recv(Estructura.vec, Estructura.qty, Estructura.aux, point_type, source, tag, comm, MPI_STATUS_IGNORE);                
pixel *tem =(pixel*)malloc(Estructura.qty *sizeof(point));                  

1 个答案:

答案 0 :(得分:1)

看来是对的。通过调用 MPI_Type_create_struct ,您可以创建自定义MPI类型。然后,通过调用 MPI_Type_commit ,您现在可以使用新类型。通过使用在MPI_Type_create_struct函数中创建的句柄。我相信代码中的句柄是变量 point_type

所以只需调用MPI_Send(buffer, count, point_type, dest, tag, comm);

即可