Skip to content

Commit

Permalink
Remove mpi-f08-rename.h
Browse files Browse the repository at this point in the history
  • Loading branch information
hppritcha authored and jtronge committed Jul 30, 2024
1 parent 8a912b0 commit 6b3ee03
Show file tree
Hide file tree
Showing 7 changed files with 830 additions and 812 deletions.
4 changes: 2 additions & 2 deletions ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ end subroutine ompi_isend_f

subroutine ompi_isendrecv_f(sendbuf,sendcount,sendtype,dest,sendtag,recvbuf, &
recvcount,recvtype,source,recvtag,comm,request,ierror) &
BIND(C, name="ompi_isendrecv_f")
BIND(C, name="ompi_isendrecv_@OMPI_F08_BINDINGS_EXTENSION@")
implicit none
OMPI_FORTRAN_IGNORE_TKR_TYPE, INTENT(IN) :: sendbuf
OMPI_FORTRAN_IGNORE_TKR_TYPE :: recvbuf
Expand All @@ -287,7 +287,7 @@ end subroutine ompi_isendrecv_f

subroutine ompi_isendrecv_replace_f(buf,count,datatype,dest,sendtag,source, &
recvtag,comm,request,ierror) &
BIND(C, name="ompi_isendrecv_replace_f")
BIND(C, name="ompi_isendrecv_replace_@OMPI_F08_BINDINGS_EXTENSION@")
implicit none
OMPI_FORTRAN_IGNORE_TKR_TYPE :: buf
INTEGER, INTENT(IN) :: count, dest, sendtag, source, recvtag
Expand Down
8 changes: 4 additions & 4 deletions ompi/mpi/fortran/use-mpi-f08/mod/mpi-f08-interfaces.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ end subroutine MPI_Irsend_f08
end interface MPI_Irsend

interface MPI_Isendrecv
subroutine MPI_Isendrecv_f08(sendbuf,sendcount,sendtype,dest,sendtag,recvbuf, &
subroutine MPI_Isendrecv_f08@OMPI_F08_BINDINGS_TS_SUFFIX@(sendbuf,sendcount,sendtype,dest,sendtag,recvbuf, &
recvcount,recvtype,source,recvtag,comm,request,ierror)
use :: mpi_f08_types, only : MPI_Datatype, MPI_Comm, MPI_Request
implicit none
Expand All @@ -139,11 +139,11 @@ subroutine MPI_Isendrecv_f08(sendbuf,sendcount,sendtype,dest,sendtag,recvbuf, &
TYPE(MPI_Comm), INTENT(IN) :: comm
TYPE(MPI_Request), INTENT(OUT) :: request
INTEGER, OPTIONAL, INTENT(OUT) :: ierror
end subroutine MPI_Isendrecv_f08
end subroutine MPI_Isendrecv_f08@OMPI_F08_BINDINGS_TS_SUFFIX@
end interface MPI_Isendrecv

interface MPI_Isendrecv_replace
subroutine MPI_Isendrecv_replace_f08(buf,count,datatype,dest,sendtag,source,recvtag, &
subroutine MPI_Isendrecv_replace_f08@OMPI_F08_BINDINGS_TS_SUFFIX@(buf,count,datatype,dest,sendtag,source,recvtag, &
comm,request,ierror)
use :: mpi_f08_types, only : MPI_Datatype, MPI_Comm, MPI_Request
implicit none
Expand All @@ -154,7 +154,7 @@ subroutine MPI_Isendrecv_replace_f08(buf,count,datatype,dest,sendtag,source,recv
TYPE(MPI_Comm), INTENT(IN) :: comm
TYPE(MPI_Request), INTENT(OUT) :: request
INTEGER, OPTIONAL, INTENT(OUT) :: ierror
end subroutine MPI_Isendrecv_replace_f08
end subroutine MPI_Isendrecv_replace_f08@OMPI_F08_BINDINGS_TS_SUFFIX@
end interface MPI_Isendrecv_replace

interface MPI_Issend
Expand Down
Loading

0 comments on commit 6b3ee03

Please sign in to comment.