Neutral Binding
MPI_TYPE_CONTIGUOUS(count, oldtype, newtype) [ IN count] replication count (nonnegative integer) [ IN oldtype] old datatype (handle) [ OUT newtype] new datatype (handle)
C Binding
int MPI_Type_contiguous(int count, MPI_Datatype oldtype, MPI_Datatype *newtype)
FORTRAN Binding
MPI_TYPE_CONTIGUOUS(COUNT, OLDTYPE, NEWTYPE, IERROR) INTEGER COUNT, OLDTYPE, NEWTYPE, IERROR
C++ Binding (in the MPI:: namespace)
Datatype Datatype::Create_contiguous(int count) const
|
|