source: proiecte/hpl/openmpi_compiled/share/man/man3/MPI_Comm_rank.3 @ 97

Last change on this file since 97 was 97, checked in by (none), 14 years ago

Adding compiled files

File size: 2.1 KB
Line 
1.\"Copyright 2006-2008 Sun Microsystems, Inc.
2.\" Copyright (c) 1996 Thinking Machines Corporation
3.TH MPI_Comm_rank 3 "Dec 08, 2009" "1.4" "Open MPI"
4.SH NAME
5\fBMPI_Comm_rank\fP \- Determines the rank of the calling process in the communicator.
6
7.SH SYNTAX
8.ft R
9.SH C Syntax
10.nf
11#include <mpi.h>
12int MPI_Comm_rank(MPI_Comm \fIcomm\fP, int\fI *rank\fP)
13
14.SH Fortran Syntax
15.nf
16INCLUDE 'mpif.h'
17MPI_COMM_RANK(\fICOMM, RANK, IERROR\fP)
18        INTEGER \fICOMM, RANK, IERROR\fP
19
20.SH C++ Syntax
21.nf
22#include <mpi.h>
23int Comm::Get_rank() const
24
25.SH INPUT PARAMETERS
26.ft R
27.TP 1i
28comm
29Communicator (handle).
30
31.SH OUTPUT PARAMETERS
32.ft R
33.TP 1i
34rank
35Rank of the calling process in group of comm (integer).
36.ft R
37.TP 1i
38IERROR
39Fortran only: Error status (integer).
40
41.SH DESCRIPTION
42.ft R
43This function gives the rank of the process in the
44particular communicator's group. It is equivalent to accessing the
45communicator's group with MPI_Comm_group, computing the rank using MPI_Group_rank, and then freeing the temporary group via MPI_Group_free.
46.sp
47Many programs will be written with the master-slave model, where one process (such as the rank-zero process) will play a supervisory role, and the other processes will serve as compute nodes. In this framework, MPI_Comm_size and MPI_Comm_rank are useful for determining the roles of the various processes of a communicator.
48
49.SH ERRORS
50Almost all MPI routines return an error value; C routines as the value of the function and Fortran routines in the last argument. C++ functions do not return errors. If the default error handler is set to MPI::ERRORS_THROW_EXCEPTIONS, then on error the C++ exception mechanism will be used to throw an MPI:Exception object.
51.sp
52Before the error value is returned, the current MPI error handler is
53called. By default, this error handler aborts the MPI job, except for I/O function errors. The error handler may be changed with MPI_Comm_set_errhandler; the predefined error handler MPI_ERRORS_RETURN 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. 
54
55.SH SEE ALSO
56.ft R
57.sp
58.nf
59MPI_Comm_group
60MPI_Comm_size
61MPI_Comm_compare
62
Note: See TracBrowser for help on using the repository browser.