Neutral Binding
MPI_GROUP_INCL(group, n, ranks, newgroup) [ IN group] group (handle) [ IN n] number of elements in array ranks (and size of newgroup) (integer) [ IN ranks] ranks of processes in group to appear in newgroup (array of integers) [ OUT newgroup] new group derived from above, in the order defined by ranks (handle)
C Binding
int MPI_Group_incl(MPI_Group group, int n, int *ranks, MPI_Group *newgroup)
FORTRAN Binding
MPI_GROUP_INCL(GROUP, N, RANKS, NEWGROUP, IERROR) INTEGER GROUP, N, RANKS(*), NEWGROUP, IERROR
C++ Binding (in the MPI:: namespace)
Group Group::Incl(int n, const int ranks[]) const
|
|