1e2019ce2a
This reverts commit cb55c88a8b
.
88 строки
3.1 KiB
C
88 строки
3.1 KiB
C
/*
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
* University Research and Technology
|
|
* Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
* of Tennessee Research Foundation. All rights
|
|
* reserved.
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
* University of Stuttgart. All rights reserved.
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
* All rights reserved.
|
|
* Copyright (c) 2011-2012 Cisco Systems, Inc. All rights reserved.
|
|
* Copyright (c) 2015 Research Organization for Information Science
|
|
* and Technology (RIST). All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "ompi_config.h"
|
|
|
|
#include "ompi/mpi/fortran/mpif-h/bindings.h"
|
|
|
|
#if OMPI_BUILD_MPI_PROFILING
|
|
#if OPAL_HAVE_WEAK_SYMBOLS
|
|
#pragma weak PMPI_DIMS_CREATE = ompi_dims_create_f
|
|
#pragma weak pmpi_dims_create = ompi_dims_create_f
|
|
#pragma weak pmpi_dims_create_ = ompi_dims_create_f
|
|
#pragma weak pmpi_dims_create__ = ompi_dims_create_f
|
|
|
|
#pragma weak PMPI_Dims_create_f = ompi_dims_create_f
|
|
#pragma weak PMPI_Dims_create_f08 = ompi_dims_create_f
|
|
#else
|
|
OMPI_GENERATE_F77_BINDINGS (PMPI_DIMS_CREATE,
|
|
pmpi_dims_create,
|
|
pmpi_dims_create_,
|
|
pmpi_dims_create__,
|
|
pompi_dims_create_f,
|
|
(MPI_Fint *nnodes, MPI_Fint *ndims, MPI_Fint *dims, MPI_Fint *ierr),
|
|
(nnodes, ndims, dims, ierr) )
|
|
#endif
|
|
#endif
|
|
|
|
#if OPAL_HAVE_WEAK_SYMBOLS
|
|
#pragma weak MPI_DIMS_CREATE = ompi_dims_create_f
|
|
#pragma weak mpi_dims_create = ompi_dims_create_f
|
|
#pragma weak mpi_dims_create_ = ompi_dims_create_f
|
|
#pragma weak mpi_dims_create__ = ompi_dims_create_f
|
|
|
|
#pragma weak MPI_Dims_create_f = ompi_dims_create_f
|
|
#pragma weak MPI_Dims_create_f08 = ompi_dims_create_f
|
|
#else
|
|
#if ! OMPI_BUILD_MPI_PROFILING
|
|
OMPI_GENERATE_F77_BINDINGS (MPI_DIMS_CREATE,
|
|
mpi_dims_create,
|
|
mpi_dims_create_,
|
|
mpi_dims_create__,
|
|
ompi_dims_create_f,
|
|
(MPI_Fint *nnodes, MPI_Fint *ndims, MPI_Fint *dims, MPI_Fint *ierr),
|
|
(nnodes, ndims, dims, ierr) )
|
|
#else
|
|
#define ompi_dims_create_f pompi_dims_create_f
|
|
#endif
|
|
#endif
|
|
|
|
|
|
void ompi_dims_create_f(MPI_Fint *nnodes, MPI_Fint *ndims,
|
|
MPI_Fint *dims, MPI_Fint *ierr)
|
|
{
|
|
int c_ierr;
|
|
OMPI_ARRAY_NAME_DECL(dims);
|
|
|
|
OMPI_ARRAY_FINT_2_INT(dims, *ndims);
|
|
|
|
c_ierr = PMPI_Dims_create(OMPI_FINT_2_INT(*nnodes),
|
|
OMPI_FINT_2_INT(*ndims),
|
|
OMPI_ARRAY_NAME_CONVERT(dims));
|
|
if (NULL != ierr) *ierr = OMPI_INT_2_FINT(c_ierr);
|
|
|
|
if (MPI_SUCCESS == c_ierr) {
|
|
OMPI_ARRAY_INT_2_FINT(dims, *ndims);
|
|
} else {
|
|
OMPI_ARRAY_FINT_2_INT_CLEANUP(dims);
|
|
}
|
|
}
|