18 строки
347 B
C
18 строки
347 B
C
|
/*
|
||
|
* $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
|
||
|
#pragma weak MPI_Cart_map = PMPI_Cart_map
|
||
|
#endif
|
||
|
|
||
|
int MPI_Cart_map(MPI_Comm comm, int ndims, int *dims,
|
||
|
int *periods, int *newrank) {
|
||
|
return MPI_SUCCESS;
|
||
|
}
|