Neutral Binding
MPI_SCAN( sendbuf, recvbuf, count, datatype, op, comm ) [ IN sendbuf] starting address of send buffer (choice) [ OUT recvbuf] starting address of receive buffer (choice) [ IN count] number of elements in input buffer (integer) [ IN datatype] data type of elements of input buffer (handle) [ IN op] operation (handle) [ IN comm] communicator (handle)
C Binding
int MPI_Scan(void* sendbuf, void* recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm )
FORTRAN Binding
MPI_SCAN(SENDBUF, RECVBUF, COUNT, DATATYPE, OP, COMM, IERROR) <type> SENDBUF(*), RECVBUF(*) INTEGER COUNT, DATATYPE, OP, COMM, IERROR
C++ Binding (in the MPI:: namespace)
void Intracomm::Scan(const void* sendbuf, void* recvbuf, int count, const Datatype& datatype, const Op& op) const
|
|