Neutral Binding
MPI_GET_COUNT(status, datatype, count) [ IN status] return status of receive operation (Status) [ IN datatype] datatype of each receive buffer entry (handle) [ OUT count] number of received entries (integer)
C Binding
int MPI_Get_count(MPI_Status *status, MPI_Datatype datatype, int *count)
FORTRAN Binding
MPI_GET_COUNT(STATUS, DATATYPE, COUNT, IERROR) INTEGER STATUS(MPI_STATUS_SIZE), DATATYPE, COUNT, IERROR
C++ Binding (in the MPI:: namespace)
int Status::Get_count(const Datatype& datatype) const
|
|