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-02-12 07:21:05 +03:00
|
|
|
#pragma weak MPI_Graph_map = PMPI_Graph_map
|
2004-01-25 04:51:49 +03:00
|
|
|
#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_map(MPI_Comm comm, int nnodes, int *index, int *edges,
|
|
|
|
int *newrank) {
|
2004-04-22 00:55:54 +04:00
|
|
|
int err;
|
|
|
|
mca_topo_base_graph_map_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_map");
|
|
|
|
}
|
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_map");
|
|
|
|
}
|
|
|
|
if (1 > nnodes || NULL == index || NULL == edges || NULL == newrank) {
|
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_map");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* map the function pointer to do the right thing */
|
|
|
|
func = comm->c_topo.topo_graph_map;
|
|
|
|
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_map");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* call the function */
|
|
|
|
if ( MPI_SUCCESS !=
|
|
|
|
(err = func(comm, nnodes, index, edges, newrank))) {
|
2004-06-07 19:33:53 +04:00
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, err, "MPI_Graph_map");
|
2004-04-22 00:55:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* All done */
|
2004-01-25 04:51:49 +03:00
|
|
|
return MPI_SUCCESS;
|
|
|
|
}
|