Changes between Initial Version and Version 1 of mpich/MPI_Comm_rank


Ignore:
Timestamp:
Apr 2, 2008, 3:22:05 PM (16 years ago)
Author:
wade
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • mpich/MPI_Comm_rank

    v1 v1  
     1= MPI_Comm_rank =
     2Determines the rank of the calling process in the communicator
     3= Synopsis =
     4{{{
     5#include "mpi.h"
     6int MPI_Comm_rank ( MPI_Comm comm, int *rank )
     7}}}
     8= Input Parameters =
     9{{{
     10comm  communicator (handle)
     11}}}
     12= Output Parameter =
     13{{{
     14rank  rank of the calling process in group of comm (integer)
     15}}}
     16= Example =
     17[wiki:mpich/point_to_point/demo1]