1MPI_Group_f2c(3) LAM/MPI MPI_Group_f2c(3)
2
3
4
6 MPI_Group_f2c - Convert a group handle from its Fortran representation
7 to its C representation
8
10 #include <mpi.h>
11 MPI_Group
12 MPI_Group_f2c(MPI_Fint f_handle)
13
15 f_handle
16 - Fortran group handle
17
18
20 group - C group handle
21
22
24 All MPI routines in Fortran (except for MPI_WTIME and MPI_WTICK ) have
25 an additional argument ierr at the end of the argument list. ierr is
26 an integer and has the same meaning as the return value of the routine
27 in C. In Fortran, MPI routines are subroutines, and are invoked with
28 the call statement.
29
30 All MPI objects (e.g., MPI_Datatype , MPI_Comm ) are of type INTEGER in
31 Fortran.
32
33
35 This function does not return the normal MPI_SUCCESS integer value upon
36 success. Instead, it returns a handle to the converted object. If an
37 error occurs, the appropriate NULL handle will be returned.
38
39
41 MPI_Group_c2f(3)
42
43
45 For more information, please see the official MPI Forum web site, which
46 contains the text of both the MPI-1 and MPI-2 standards. These docu‐
47 ments contain detailed information about each MPI function (most of
48 which is not duplicated in these man pages).
49
50 http://www.mpi-forum.org/
51
53 handles.c
54
55
56
57LAM/MPI 7.1.2 2/23/2006 MPI_Group_f2c(3)