Lockless Inc

NAME

MPI_Comm_rank - Returns the current rank within the given communicator

SYNOPSIS

#include <mpi.h> int MPI_Comm_rank(MPI_Comm comm , int *rank );

#include <pmpi.h> int PMPI_Comm_rank(MPI_Comm comm , int *rank );

#include <mpi.h> int MPI::Comm::Get_rank(void) const

INCLUDE 'mpif.h' MPI_COMM_RANK(comm , rank , ierr ) INTEGER comm , rank , ierr

INPUT PARAMETER

comm - communicator (handle)

OUTPUT PARAMETER

rank - the current processes rank within the communicator (integer).

DESCRIPTION

The MPI_Comm_rank() function is used to obtain the current rank within the given communicator.

In C++, the rank is passed as the return value to this function.

The communicator must be a valid one (not MPI_COMM_NULL). PMPI_Comm_rank() is the profiling version of this function.

This function is equivalent to:

MPI_Group group; int rank;

MPI_Comm_group(comm, &group); MPI_Group_rank(group, &rank); MPI_Group_free(&group);

ERRORS

All MPI routines except for MPI_Wtime and MPI_Wtick return an error code. The the current MPI error handler is invoked if the return value is not MPI_SUCCESS. The default error handler aborts, but this may be changed with by using the MPI_Errhandler_set() function. The predefined error handler MPI_ERRORS_RETURN may be used to cause error values to be returned instead. Note that MPI does not guarentee that an MPI program can continue past an error. In this implementation, all errors except MPI_ERR_INTERN or MPI_ERR_OTHER should always be recoverable.

In C, the error code is passed as the return value. In FORTRAN, all functions have an parameter ierr which returns the error code. MPI C++ functions do not directly return an error code. However, C++ users may want to use the MPI::ERRORS_THROW_EXCEPTIONS handler. This will throw an MPI::Exception with the corresponding error code. To prevent exceptions from being raised from within C and Fortran code, they will see all error return values as MPI_ERR_PENDING when this handler is chosen. In this implementation, call MPI::throw_exception() to throw the correct exception if this occurs.

MPI_SUCCESS - No error;

MPI_ERR_PENDING - Pending exception;

MPI_ERR_COMM - Invalid communicator;

MPI_ERR_ARG - Invalid output pointer.

SEE ALSO

MPI_Comm_size (3) MPI_Comm_remote_size (3) MPI_Comm_rank (3) MPI_Comm_create (3) MPI_Comm_free (3) MPI_Intercomm_create (3) MPI_Intercomm_merge (3)

About Us Returns Policy Privacy Policy Send us Feedback
Company Info | Product Index | Category Index | Help | Terms of Use
Copyright © Lockless Inc All Rights Reserved.