NAME
MMPPIIGGrroouuppttrraannssllaatteerraannkkss - Translates the ranks of processes in one
group to those in another group. SSYYNNTTAAXX CC SSyynnttaaxx#include
int MPIGrouptranslateranks(MPIGroup group1, int n, int *ranks1, MPIGroup group2, int *ranks2) FFoorrttrraann SSyynnttaaxx INCLUDE 'mpif.h' MPIGROUPTRANSLATERANKS(GROUP1, N, RANKS1, GROUP2, RANKS2,IERROR)
INTEGER GROUP1, N, RANKS1(*), GROUP2, RANKS2(*), IERROR
CC++++ SSyynnttaaxx#include
static void Group::Translateranks (const Group& group1, int n, const int ranks1[], const Group& group2, int ranks2[]) IINNPPUUTT PPAARRAAMMEETTEERRSS group1 First group (handle). n Number of ranks in ranks1 and ranks2 arrays (integer). ranks1 Array of zero or more valid ranks in group1. group2 Second group (handle). OOUUTTPPUUTT PPAARRAAMMEETTEERRSS ranks2 Array of corresponding ranks in group2, MPIUNDEFINED when no correspondence exists.IERROR Fortran only: Error status (integer).
DESCRIPTION
This function is important for determining the relative numbering of the same processes in two different groups. For instance, if one knows the ranks of certain processes in the group of MPICOMMWORLD, one might want to know their ranks in a subset of that group. EERRRROORRSS Almost all MPI routines return an error value; C routines as the valueof the function and Fortran routines in the last argument. C++ func-
tions do not return errors. If the default error handler is set toMPI::ERRORSTHROWEXCEPTIONS, then on error the C++ exception mechanism
will be used to throw an MPI:Exception object. Before the error value is returned, the current MPI error handler is called. By default, this error handler aborts the MPI job, except for I/O function errors. The error handler may be changed withMPICommseterrhandler; the predefined error handler MPIERRORSRETURN
may be used to cause error values to be returned. Note that MPI does not guarantee that an MPI program can continue past an error. Open MPI 1.2 September 20M0P6IGrouptranslateranks(3OpenMPI)