
Signed-off-by: Gilles Gouaillardet <gilles@rist.or.jp> (cherry picked from commit open-mpi/ompi@c4ce01d104)
21 строка
793 B
Fortran
21 строка
793 B
Fortran
! -*- f90 -*-
|
|
!
|
|
! Copyright (c) 2010-2015 Cisco Systems, Inc. All rights reserved.
|
|
! Copyright (c) 2009-2015 Los Alamos National Security, LLC.
|
|
! All Rights reserved.
|
|
! Copyright (c) 2018 Research Organization for Information Science
|
|
! and Technology (RIST). All rights reserved.
|
|
! $COPYRIGHT$
|
|
|
|
#include "ompi/mpi/fortran/configure-fortran-output.h"
|
|
|
|
function MPI_Aint_diff_f08(addr1, addr2)
|
|
use :: mpi_f08_types, only : MPI_ADDRESS_KIND
|
|
use :: ompi_mpifh_bindings, only : ompi_aint_diff_f
|
|
implicit none
|
|
INTEGER(MPI_ADDRESS_KIND) :: MPI_Aint_diff_f08
|
|
INTEGER(MPI_ADDRESS_KIND), INTENT(IN) :: addr1
|
|
INTEGER(MPI_ADDRESS_KIND), INTENT(IN) :: addr2
|
|
MPI_Aint_diff_f08 = ompi_aint_diff_f(addr1, addr2)
|
|
end function MPI_Aint_diff_f08
|