Code: Select all
Image testImage;
// read in the file
testImage.read("image.png");
Code: Select all
MPI_Send( &testImage, sizeof(Image), MPI_BYTE, i , 100, MPI_COMM_WORLD);
Code: Select all
Image subimage_toModify;
MPI_Recv( &subimage_toModify, sizeof(Image), MPI_BYTE, 0, 100, MPI_COMM_WORLD, &status);
Signal code: Address not mapped (1)
can anyone be of any help? i am almost frustrated !
Thanks.