MPI_Unpack
--- Unpack a datatype into contiguous memory
Input Parameters
- inbuf
- input buffer start (choice)
- insize
- size of input buffer, in bytes (integer)
- position
- current position in bytes (integer)
- outcount
- number of items to be unpacked (integer)
- datatype
- datatype of each output data item (handle)
- comm
- communicator for packed message (handle)
Output Parameter
- outbuf
- output buffer start (choice)
Synopsis
#include "mpi.h"
int MPI_Unpack ( inbuf, insize, position, outbuf, outcount, type, comm )
void *inbuf;
int insize;
int *position;
void *outbuf;
int outcount;
MPI_Datatype type;
MPI_Comm comm;
Location: unpack.c