Neutral Binding
MPI_GET_ELEMENTS( status, datatype, count) [ IN status] return status of receive operation (Status) [ IN datatype] datatype used by receive operation (handle) [ OUT count] number of received basic elements (integer)
C Binding
int MPI_Get_elements(MPI_Status *status, MPI_Datatype datatype, int *count)
FORTRAN Binding
MPI_GET_ELEMENTS(STATUS, DATATYPE, COUNT, IERROR) INTEGER STATUS(MPI_STATUS_SIZE), DATATYPE, COUNT, IERROR
C++ Binding (in the MPI:: namespace)
int Status::Get_elements(const Datatype& datatype) const
|
|