win_rput_sp Subroutine

private subroutine win_rput_sp(this, target_rank, target_disp, count, buffer, request)

Type Bound

win_t

Arguments

Type IntentOptional Attributes Name
class(win_t), intent(in) :: this
integer(kind=int32), intent(in) :: target_rank
integer(kind=MPI_ADDRESS_KIND), intent(in) :: target_disp
integer(kind=int32), intent(in) :: count
real(kind=sp), intent(in) :: buffer(*)
type(request_t), intent(out) :: request

Calls

proc~~win_rput_sp~~CallsGraph proc~win_rput_sp win_t%win_rput_sp mpi_rput mpi_rput proc~win_rput_sp->mpi_rput

Called by

proc~~win_rput_sp~~CalledByGraph proc~win_rput_sp win_t%win_rput_sp proc~darray_put_sp darray_put_sp proc~darray_put_sp->proc~win_rput_sp interface~darray_put darray_put interface~darray_put->proc~darray_put_sp

Variables

Type Visibility Attributes Name Initial
integer(kind=int32), private :: ierr

Source Code

   subroutine win_rput_sp(this, target_rank, target_disp, count, buffer, request)
      class(win_t), intent(in) :: this
      integer(int32), intent(in) :: target_rank
      integer(MPI_ADDRESS_KIND), intent(in) :: target_disp
      integer(int32), intent(in) :: count
      real(sp), intent(in) :: buffer(*)
      type(request_t), intent(out) :: request
      integer(int32) :: ierr

      call MPI_Rput(buffer, count, MPI_REAL, &
                    target_rank, target_disp, count, MPI_REAL, &
                    this%m_win, request%m_request, ierr)
      request%is_valid = .true.
   end subroutine win_rput_sp