I try to send a derived type to processors. The type contains object from other derived type. I started the example from Examples: Struct Derived Data Type. I add my code. The code is little long but it basically same for two types. I have Part
object that has also a Particle
object and i want to send Part
. The result that i have is after the code.
#include "mpi.h"
#include <stdio.h>
#define NELEM 25
main(int argc, char *argv[]) {
int numtasks, rank, source=0, dest, tag=1, i;
typedef struct {
float x, y, z;
float velocity;
int n, type;
} Particle;
// Another struct to send
typedef struct {
char character;
Particle part ;
} Part ;
MPI_Request send_req;
MPI_Status stat;
MPI_Init(&argc,&argv);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
MPI_Comm_size(MPI_COMM_WORLD, &numtasks);
// Particle type
Particle particles;
MPI_Datatype particletype, oldtypes[2];
int blockcounts[2];
MPI_Aint offsets[2], extent;
offsets[0] = 0;
oldtypes[0] = MPI_FLOAT;
blockcounts[0] = 4;
MPI_Type_extent(MPI_FLOAT, &extent);
offsets[1] = 4 * extent;
oldtypes[1] = MPI_INT;
blockcounts[1] = 2;
MPI_Type_struct(2, blockcounts, offsets, oldtypes, &particletype);
MPI_Type_commit(&particletype);
// Part type
Part party , party_received;
MPI_Datatype part_type,oldtype2[2];
int blockcount2[2];
MPI_Aint offset2[2],extent2;
offset2[0] = 0;
oldtype2[0] = MPI_CHAR ;
blockcount2[0] = 1 ;
MPI_Type_extent(particletype,&extent);
offset2[1] = extent ;
oldtype2[1] = particletype ;
blockcount2[1] = 1 ;
MPI_Type_struct(2,blockcount2,offset2,oldtype2,&part_type);
MPI_Type_commit(&part_type);
party.character= 'a';
if (rank == 0) {
particles.x = 1 * 1.0;
particles.y = 1 * -1.0;
particles.z = 1 * 1.0;
particles.velocity = 0.25;
particles.n = 1;
particles.type = 1 % 2;
party.part = particles;
printf("Derived data type sending, character: %c \n",party.character);
MPI_Isend(&party,1,part_type,1,tag,MPI_COMM_WORLD,&send_req);
printf("particles sent %f %f %f %f %d %d \n",
party.part.x,party.part.y,party.part.z,
party.part.velocity,party.part.n,party.part.type);
}
if(rank == 1) {
MPI_Recv(&party_received, 1, part_type, 0, tag, MPI_COMM_WORLD, &stat);
printf("derived part type received character %c \n",party_received.character) ;
printf("particles %f %f %f %f %d %d \n",
party_received.part.x,party_received.part.y,party_received.part.z,
party_received.part.velocity,party_received.part.n,party_received.part.type);
}
MPI_Type_free(&particletype);
MPI_Finalize();
}
The result changes every time. The last one is :
Derived data type sending, character: a
particles sent 1.000000 -1.000000 1.000000 0.250000 1 1
derived part type received character a
particles 0.000000 -2686527813451776.000000 0.000000 0.000000 1 1
While the character
is true, why Particle
object are not ? How can i correct it?