0cba0b95b8
for spec compliance fixed by Roman, reviewed by Igor/Miked cmr=v1.8.2:reviewer=ompi-rm1.8 This commit was SVN r31510.
43 строки
850 B
C
43 строки
850 B
C
/*
|
|
* Copyright (c) 2013 Mellanox Technologies, Inc.
|
|
* All rights reserved.
|
|
* Copyright (c) 2013 Cisco Systems, Inc. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "oshmem_config.h"
|
|
#include "oshmem/shmem/fortran/bindings.h"
|
|
#include "oshmem/include/shmem.h"
|
|
|
|
#if OSHMEM_PROFILING
|
|
#include "oshmem/shmem/fortran/profile/pbindings.h"
|
|
SHMEM_GENERATE_WEAK_BINDINGS(MY_PE, my_pe)
|
|
#pragma weak _my_pe_ = p_my_pe_
|
|
#include "oshmem/shmem/fortran/profile/defines.h"
|
|
#endif
|
|
|
|
SHMEM_GENERATE_FORTRAN_BINDINGS_FUNCTION (MPI_Fint,
|
|
MY_PE,
|
|
my_pe_,
|
|
my_pe__,
|
|
my_pe_f,
|
|
(void),
|
|
() )
|
|
|
|
MPI_Fint _my_pe_(void)
|
|
{
|
|
return my_pe_f();
|
|
}
|
|
|
|
MPI_Fint my_pe_f(void)
|
|
{
|
|
MPI_Fint rc;
|
|
rc = OMPI_INT_2_FINT(my_pe());
|
|
return rc;
|
|
}
|
|
|