Changes between Initial Version and Version 1 of mpich/MPI_Comm_rank
- Timestamp:
- Apr 2, 2008, 3:22:05 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
mpich/MPI_Comm_rank
v1 v1 1 = MPI_Comm_rank = 2 Determines the rank of the calling process in the communicator 3 = Synopsis = 4 {{{ 5 #include "mpi.h" 6 int MPI_Comm_rank ( MPI_Comm comm, int *rank ) 7 }}} 8 = Input Parameters = 9 {{{ 10 comm communicator (handle) 11 }}} 12 = Output Parameter = 13 {{{ 14 rank rank of the calling process in group of comm (integer) 15 }}} 16 = Example = 17 [wiki:mpich/point_to_point/demo1]