Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ wbland@icl.utk.edu Wesley Bland UTK
yaeld@mellanox.com Yael Dalen Mellanox
yosefe@mellanox.com Yossi Etigin Mellanox
yuw@lanl.gov Weikuan Yu LANL, OSU
wangzm@cn.ibm.com Zhiming Wang IBM
------------------------------- --------------------------- -------------------

Affiliation abbreviations:
Expand Down
8 changes: 8 additions & 0 deletions ompi/mpi/fortran/use-mpi-f08/buffer_detach.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
OMPI_DECLSPEC void ompi_buffer_detach_f08(char *buffer, MPI_Fint *size,
MPI_Fint *ierr);

OMPI_DECLSPEC void pompi_buffer_detach_f08(char *buffer, MPI_Fint *size,
MPI_Fint *ierr);

/* (this comment is repeated in ompi/mpi/fortran/mpif-h/buffer_detach_f.c)
*
* MPI-3.1 section 3.6, page 45, states that the mpif.h and mpi module
Expand Down Expand Up @@ -65,3 +68,8 @@ void ompi_buffer_detach_f08(char *buffer, MPI_Fint *size, MPI_Fint *ierr)
*(void **)buffer = dummy;
}
}

void pompi_buffer_detach_f08(char *buffer, MPI_Fint *size, MPI_Fint *ierr)
{
ompi_buffer_detach_f08(buffer, size, ierr);
}
2 changes: 1 addition & 1 deletion ompi/mpi/fortran/use-mpi-f08/mpi-f-interfaces-bind.h
Original file line number Diff line number Diff line change
Expand Up @@ -1366,7 +1366,7 @@ subroutine ompi_comm_set_attr_f(comm,comm_keyval,attribute_val,ierror) &
end subroutine ompi_comm_set_attr_f

subroutine ompi_comm_set_info_f(comm,info,ierror) &
BIND(C, name="ompi_comm_get_info_f")
BIND(C, name="ompi_comm_set_info_f")
implicit none
INTEGER, INTENT(IN) :: comm
INTEGER, INTENT(IN) :: info
Expand Down
6 changes: 3 additions & 3 deletions ompi/mpi/fortran/use-mpi-f08/pmpi-f-interfaces-bind.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ end subroutine pompi_buffer_attach_f
! us; they can just both be bound to the same back-end
! ompi_buffer_detach_f08 C function.
subroutine pompi_buffer_detach_f(buffer_addr,size,ierror) &
BIND(C, name="ompi_buffer_detach_f08")
BIND(C, name="pompi_buffer_detach_f08")
implicit none
OMPI_FORTRAN_IGNORE_TKR_TYPE, INTENT(IN) :: buffer_addr
INTEGER, INTENT(OUT) :: size
Expand Down Expand Up @@ -1416,7 +1416,7 @@ subroutine pompi_type_set_name_f(type,type_name,ierror,type_name_len) &
end subroutine pompi_type_set_name_f

subroutine pompi_win_allocate_f(size, disp_unit, info, comm, &
baseptr, win, ierror) BIND(C, name="ompi_win_allocate_f")
baseptr, win, ierror) BIND(C, name="pompi_win_allocate_f")
USE, INTRINSIC :: ISO_C_BINDING, ONLY : C_PTR
use :: mpi_f08_types, only : MPI_ADDRESS_KIND
INTEGER(KIND=MPI_ADDRESS_KIND), INTENT(IN) :: size
Expand All @@ -1429,7 +1429,7 @@ subroutine pompi_win_allocate_f(size, disp_unit, info, comm, &
end subroutine pompi_win_allocate_f

subroutine pompi_win_allocate_shared_f(size, disp_unit, info, comm, &
baseptr, win, ierror) BIND(C, name="ompi_win_allocate_shared_f")
baseptr, win, ierror) BIND(C, name="pompi_win_allocate_shared_f")
USE, INTRINSIC :: ISO_C_BINDING, ONLY : C_PTR
use :: mpi_f08_types, only : MPI_ADDRESS_KIND
INTEGER(KIND=MPI_ADDRESS_KIND), INTENT(IN) :: size
Expand Down
4 changes: 2 additions & 2 deletions ompi/mpi/fortran/use-mpi-f08/pmpi-f08-interfaces.F90
Original file line number Diff line number Diff line change
Expand Up @@ -2413,7 +2413,7 @@ end subroutine PMPI_Topo_test_f08
! MPI_Wtick is not a wrapper function
!
interface PMPI_Wtick
function PMPI_Wtick_f08( ) BIND(C,name="MPI_Wtick")
function PMPI_Wtick_f08( ) BIND(C,name="PMPI_Wtick")
use, intrinsic :: ISO_C_BINDING
implicit none
DOUBLE PRECISION :: PMPI_Wtick_f08
Expand All @@ -2423,7 +2423,7 @@ end function PMPI_Wtick_f08
! MPI_Wtime is not a wrapper function
!
interface PMPI_Wtime
function PMPI_Wtime_f08( ) BIND(C,name="MPI_Wtime")
function PMPI_Wtime_f08( ) BIND(C,name="PMPI_Wtime")
use, intrinsic :: ISO_C_BINDING
implicit none
DOUBLE PRECISION :: PMPI_Wtime_f08
Expand Down