win_put_i32 Subroutine

private subroutine win_put_i32(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=int32), intent(in) :: buffer(*)

Calls

proc~~win_put_i32~2~~CallsGraph proc~win_put_i32~2 win_t%win_put_i32 mpi_put mpi_put proc~win_put_i32~2->mpi_put

Variables

Type Visibility Attributes Name Initial
integer, private :: ierr

Source Code

   subroutine win_put_i32(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(int32), intent(in) :: buffer(*)
      integer :: ierr

      call MPI_Put(buffer, count, MPI_INTEGER, &
                   target_rank, target_disp, count, MPI_INTEGER, &
                   this%m_win, ierr)
   end subroutine win_put_i32