win_get_i64 Subroutine

private subroutine win_get_i64(this, target_rank, target_disp, count, buffer)

Type Bound

win_t

Arguments

Type IntentOptional Attributes Name
class(win_t), intent(in) :: this
integer, intent(in) :: target_rank
integer(kind=MPI_ADDRESS_KIND), intent(in) :: target_disp
integer, intent(in) :: count
integer(kind=int64), intent(out) :: buffer(*)

Calls

proc~~win_get_i64~2~~CallsGraph proc~win_get_i64~2 win_t%win_get_i64 mpi_get mpi_get proc~win_get_i64~2->mpi_get

Variables

Type Visibility Attributes Name Initial
integer, private :: ierr

Source Code

   subroutine win_get_i64(this, target_rank, target_disp, count, buffer)
      class(win_t), intent(in) :: this
      integer, intent(in) :: target_rank
      integer(MPI_ADDRESS_KIND), intent(in) :: target_disp
      integer, intent(in) :: count
      integer(int64), intent(out) :: buffer(*)
      integer :: ierr

      call MPI_Get(buffer, count, MPI_INTEGER8, &
                   target_rank, target_disp, count, MPI_INTEGER8, &
                   this%m_win, ierr)
   end subroutine win_get_i64