comm_irecv_real_dp Subroutine

private subroutine comm_irecv_real_dp(comm, data, source, tag, request)

Arguments

Type IntentOptional Attributes Name
type(comm_t), intent(in) :: comm
real(kind=dp), intent(out) :: data
integer(kind=int32), intent(in) :: source
integer(kind=int32), intent(in) :: tag
type(request_t), intent(out) :: request

Calls

proc~~comm_irecv_real_dp~~CallsGraph proc~comm_irecv_real_dp comm_irecv_real_dp mpi_irecv mpi_irecv proc~comm_irecv_real_dp->mpi_irecv

Called by

proc~~comm_irecv_real_dp~~CalledByGraph proc~comm_irecv_real_dp comm_irecv_real_dp interface~irecv irecv interface~irecv->proc~comm_irecv_real_dp

Variables

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

Source Code

   subroutine comm_irecv_real_dp(comm, data, source, tag, request)
      type(comm_t), intent(in) :: comm
      real(dp), intent(out) :: data
      integer(int32), intent(in) :: source
      integer(int32), intent(in) :: tag
      type(request_t), intent(out) :: request
      integer(int32) :: ierr

      call MPI_Irecv(data, 1, MPI_DOUBLE_PRECISION, source, tag, comm%m_comm, request%m_request, ierr)
      request%is_valid = .true.
   end subroutine comm_irecv_real_dp