comm_irecv_real_dp_array Subroutine

private subroutine comm_irecv_real_dp_array(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_array~~CallsGraph proc~comm_irecv_real_dp_array comm_irecv_real_dp_array mpi_irecv mpi_irecv proc~comm_irecv_real_dp_array->mpi_irecv

Called by

proc~~comm_irecv_real_dp_array~~CalledByGraph proc~comm_irecv_real_dp_array comm_irecv_real_dp_array interface~irecv irecv interface~irecv->proc~comm_irecv_real_dp_array

Variables

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

Source Code

   subroutine comm_irecv_real_dp_array(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, size(data), MPI_DOUBLE_PRECISION, source, tag, comm%m_comm, request%m_request, ierr)
      request%is_valid = .true.
   end subroutine comm_irecv_real_dp_array