Neutral Binding
MPI_COMM_CREATE(comm, group, newcomm) [ IN comm] communicator (handle) [ IN group] Group, which is a subset of the group of comm (handle) [ OUT newcomm] new communicator (handle)
C Binding
int MPI_Comm_create(MPI_Comm comm, MPI_Group group, MPI_Comm *newcomm)
FORTRAN Binding
MPI_COMM_CREATE(COMM, GROUP, NEWCOMM, IERROR) INTEGER COMM, GROUP, NEWCOMM, IERROR
C++ Binding (in the MPI:: namespace)
Intracomm Intracomm::Create(const Group& group) const
|
|