Ubuntu Manpages

MPIR_Type_indexed

create an indexed datatype

int MPIR_Type_indexed(int count,
const int *blocklength_array,
const void *displacement_array,
int dispinbytes, MPI_Datatype oldtype, MPI_Datatype * newtype)

- number of blocks in type
- number of elements in each block
- offsets of blocks from start of type (see next parameter for units)
- if nonzero, then displacements are in bytes (the displacement_array is an array of ints), otherwise they in terms of extent of oldtype (the displacement_array is an array of MPI_Aints)
- type (using handle) of datatype on which new type is based

- handle of new indexed datatype

0 on success, -1 on failure.