Skip to content

Commit

Permalink
0001 Drop real128
Browse files Browse the repository at this point in the history
See pmodels/mpich#4005

Signed-off-by: Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
  • Loading branch information
nmorey committed Jun 5, 2020
1 parent 60ccf8e commit c2952d7
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions src/binding/fortran/use_mpi_f08/mpi_f08_types.f90
Expand Up @@ -248,10 +248,8 @@ end function MPI_File_c2f
module procedure MPI_Sizeof_xint64
module procedure MPI_Sizeof_xreal32
module procedure MPI_Sizeof_xreal64
module procedure MPI_Sizeof_xreal128
module procedure MPI_Sizeof_xcomplex32
module procedure MPI_Sizeof_xcomplex64
module procedure MPI_Sizeof_xcomplex128
end interface

private :: MPI_Sizeof_character
Expand All @@ -263,10 +261,8 @@ end function MPI_File_c2f
private :: MPI_Sizeof_xint64
private :: MPI_Sizeof_xreal32
private :: MPI_Sizeof_xreal64
private :: MPI_Sizeof_xreal128
private :: MPI_Sizeof_xcomplex32
private :: MPI_Sizeof_xcomplex64
private :: MPI_Sizeof_xcomplex128

contains

Expand Down Expand Up @@ -350,16 +346,6 @@ subroutine MPI_Sizeof_xreal64 (x, size, ierror)
ierror = 0
end subroutine MPI_Sizeof_xreal64

subroutine MPI_Sizeof_xreal128 (x, size, ierror)
use,intrinsic :: iso_fortran_env, only: real128
real(real128),dimension(..) :: x
integer, intent(out) :: size
integer, optional, intent(out) :: ierror

size = storage_size(x)/8
ierror = 0
end subroutine MPI_Sizeof_xreal128

subroutine MPI_Sizeof_xcomplex32 (x, size, ierror)
use,intrinsic :: iso_fortran_env, only: real32
complex(real32),dimension(..) :: x
Expand All @@ -380,16 +366,6 @@ subroutine MPI_Sizeof_xcomplex64 (x, size, ierror)
ierror = 0
end subroutine MPI_Sizeof_xcomplex64

subroutine MPI_Sizeof_xcomplex128 (x, size, ierror)
use,intrinsic :: iso_fortran_env, only: real128
complex(real128),dimension(..) :: x
integer, intent(out) :: size
integer, optional, intent(out) :: ierror

size = storage_size(x)/8
ierror = 0
end subroutine MPI_Sizeof_xcomplex128

subroutine MPI_Status_f2f08(f_status, f08_status, ierror)
integer, intent(in) :: f_status(MPI_STATUS_SIZE)
type(MPI_Status), intent(out) :: f08_status
Expand Down

0 comments on commit c2952d7

Please sign in to comment.