This source file includes following definitions.
- ompi_graph_create_f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 #include "ompi_config.h"
23
24 #include "ompi/mpi/fortran/mpif-h/bindings.h"
25
26 #if OMPI_BUILD_MPI_PROFILING
27 #if OPAL_HAVE_WEAK_SYMBOLS
28 #pragma weak PMPI_GRAPH_CREATE = ompi_graph_create_f
29 #pragma weak pmpi_graph_create = ompi_graph_create_f
30 #pragma weak pmpi_graph_create_ = ompi_graph_create_f
31 #pragma weak pmpi_graph_create__ = ompi_graph_create_f
32
33 #pragma weak PMPI_Graph_create_f = ompi_graph_create_f
34 #pragma weak PMPI_Graph_create_f08 = ompi_graph_create_f
35 #else
36 OMPI_GENERATE_F77_BINDINGS (PMPI_GRAPH_CREATE,
37 pmpi_graph_create,
38 pmpi_graph_create_,
39 pmpi_graph_create__,
40 pompi_graph_create_f,
41 (MPI_Fint *comm_old, MPI_Fint *nnodes, MPI_Fint *indx, MPI_Fint *edges, ompi_fortran_logical_t *reorder, MPI_Fint *comm_graph, MPI_Fint *ierr),
42 (comm_old, nnodes, indx, edges, reorder, comm_graph, ierr) )
43 #endif
44 #endif
45
46 #if OPAL_HAVE_WEAK_SYMBOLS
47 #pragma weak MPI_GRAPH_CREATE = ompi_graph_create_f
48 #pragma weak mpi_graph_create = ompi_graph_create_f
49 #pragma weak mpi_graph_create_ = ompi_graph_create_f
50 #pragma weak mpi_graph_create__ = ompi_graph_create_f
51
52 #pragma weak MPI_Graph_create_f = ompi_graph_create_f
53 #pragma weak MPI_Graph_create_f08 = ompi_graph_create_f
54 #else
55 #if ! OMPI_BUILD_MPI_PROFILING
56 OMPI_GENERATE_F77_BINDINGS (MPI_GRAPH_CREATE,
57 mpi_graph_create,
58 mpi_graph_create_,
59 mpi_graph_create__,
60 ompi_graph_create_f,
61 (MPI_Fint *comm_old, MPI_Fint *nnodes, MPI_Fint *indx, MPI_Fint *edges, ompi_fortran_logical_t *reorder, MPI_Fint *comm_graph, MPI_Fint *ierr),
62 (comm_old, nnodes, indx, edges, reorder, comm_graph, ierr) )
63 #else
64 #define ompi_graph_create_f pompi_graph_create_f
65 #endif
66 #endif
67
68
69 void ompi_graph_create_f(MPI_Fint *comm_old, MPI_Fint *nnodes,
70 MPI_Fint *indx, MPI_Fint *edges,
71 ompi_fortran_logical_t *reorder, MPI_Fint *comm_graph,
72 MPI_Fint *ierr)
73 {
74 int c_ierr;
75 MPI_Comm c_comm_old, c_comm_graph;
76 OMPI_ARRAY_NAME_DECL(indx);
77 OMPI_ARRAY_NAME_DECL(edges);
78
79 c_comm_old = PMPI_Comm_f2c(*comm_old);
80
81 OMPI_ARRAY_FINT_2_INT(indx, *nnodes);
82
83
84 OMPI_ARRAY_FINT_2_INT(edges, indx[*nnodes - 1]);
85
86 c_ierr = PMPI_Graph_create(c_comm_old,
87 OMPI_FINT_2_INT(*nnodes),
88 OMPI_ARRAY_NAME_CONVERT(indx),
89 OMPI_ARRAY_NAME_CONVERT(edges),
90 OMPI_LOGICAL_2_INT(*reorder),
91 &c_comm_graph);
92 if (NULL != ierr) *ierr = OMPI_INT_2_FINT(c_ierr);
93
94 if (OMPI_SUCCESS == c_ierr) {
95 *comm_graph = PMPI_Comm_c2f(c_comm_graph);
96 }
97
98 OMPI_ARRAY_FINT_2_INT_CLEANUP(indx);
99 OMPI_ARRAY_FINT_2_INT_CLEANUP(edges);
100 }