2004-01-25 04:51:49 +03:00
|
|
|
/*
|
|
|
|
* $HEADERS$
|
|
|
|
*/
|
|
|
|
#include "lam_config.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "mpi.h"
|
|
|
|
#include "mpi/interface/c/bindings.h"
|
|
|
|
|
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_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
|
|
|
|
|
|
|
|
int MPI_Graph_map(MPI_Comm comm, int nnodes, int *index, int *edges,
|
|
|
|
int *newrank) {
|
|
|
|
return MPI_SUCCESS;
|
|
|
|
}
|