2004-01-25 04:51:49 +03:00
|
|
|
/*
|
|
|
|
* $HEADERS$
|
|
|
|
*/
|
2004-06-07 19:33:53 +04:00
|
|
|
#include "ompi_config.h"
|
2004-01-25 04:51:49 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "mpi.h"
|
2004-03-17 21:45:16 +03:00
|
|
|
#include "mpi/c/bindings.h"
|
2004-04-22 00:55:54 +04:00
|
|
|
#include "communicator/communicator.h"
|
|
|
|
#include "errhandler/errhandler.h"
|
|
|
|
#include "mca/topo/topo.h"
|
2004-01-25 04:51:49 +03:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
2004-01-25 04:51:49 +03:00
|
|
|
#pragma weak MPI_Graph_get = PMPI_Graph_get
|
|
|
|
#endif
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#if OMPI_PROFILING_DEFINES
|
2004-04-20 22:50:43 +04:00
|
|
|
#include "mpi/c/profile/defines.h"
|
|
|
|
#endif
|
|
|
|
|
2004-01-25 04:51:49 +03:00
|
|
|
int MPI_Graph_get(MPI_Comm comm, int maxindex, int maxedges,
|
|
|
|
int *index, int *edges) {
|
2004-04-22 00:55:54 +04:00
|
|
|
int err;
|
|
|
|
mca_topo_base_graph_get_fn_t func;
|
|
|
|
|
|
|
|
/* check the arguments */
|
|
|
|
if (MPI_PARAM_CHECK) {
|
|
|
|
if (MPI_COMM_NULL == comm) {
|
2004-06-07 19:33:53 +04:00
|
|
|
return OMPI_ERRHANDLER_INVOKE (MPI_COMM_WORLD, MPI_ERR_COMM,
|
2004-04-22 00:55:54 +04:00
|
|
|
"MPI_Graph_get");
|
|
|
|
}
|
2004-06-07 19:33:53 +04:00
|
|
|
if (OMPI_COMM_IS_INTER(comm)) {
|
|
|
|
return OMPI_ERRHANDLER_INVOKE (MPI_COMM_WORLD, MPI_ERR_COMM,
|
2004-04-22 00:55:54 +04:00
|
|
|
"MPI_Graph_get");
|
|
|
|
}
|
2004-06-07 19:33:53 +04:00
|
|
|
if (!OMPI_COMM_IS_GRAPH(comm)) {
|
|
|
|
return OMPI_ERRHANDLER_INVOKE (MPI_COMM_WORLD, MPI_ERR_TOPOLOGY,
|
2004-04-22 00:55:54 +04:00
|
|
|
"MPI_Graph_get");
|
|
|
|
}
|
|
|
|
if (0 > maxindex || 0 > maxedges || NULL == index || NULL == edges) {
|
2004-06-07 19:33:53 +04:00
|
|
|
return OMPI_ERRHANDLER_INVOKE (MPI_COMM_WORLD, MPI_ERR_ARG,
|
2004-04-22 00:55:54 +04:00
|
|
|
"MPI_Graph_get");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* get the function pointer to do the right thing */
|
|
|
|
func = comm->c_topo.topo_graph_get;
|
|
|
|
if (NULL == func) {
|
2004-06-07 19:33:53 +04:00
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_OTHER,
|
2004-04-22 00:55:54 +04:00
|
|
|
"MPI_Graph_get");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* call the function */
|
|
|
|
if ( MPI_SUCCESS !=
|
|
|
|
(err = func(comm, maxindex, maxedges, index, edges))) {
|
2004-06-07 19:33:53 +04:00
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, err, "MPI_Graph_get");
|
2004-04-22 00:55:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* All done */
|
2004-01-25 04:51:49 +03:00
|
|
|
return MPI_SUCCESS;
|
|
|
|
}
|