comm_isend_real_sp Subroutine

private subroutine comm_isend_real_sp(comm, data, dest, tag, request)

Non-blocking send of a single single-precision real

Arguments

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

Calls

proc~~comm_isend_real_sp~~CallsGraph proc~comm_isend_real_sp comm_isend_real_sp mpi_isend mpi_isend proc~comm_isend_real_sp->mpi_isend

Called by

proc~~comm_isend_real_sp~~CalledByGraph proc~comm_isend_real_sp comm_isend_real_sp interface~isend isend interface~isend->proc~comm_isend_real_sp

Variables

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

Source Code

   subroutine comm_isend_real_sp(comm, data, dest, tag, request)
   !! Non-blocking send of a single single-precision real
      type(comm_t), intent(in) :: comm
      real(sp), intent(in) :: data
      integer(int32), intent(in) :: dest
      integer(int32), intent(in) :: tag
      type(request_t), intent(out) :: request
      integer(int32) :: ierr

      call MPI_Isend(data, 1, MPI_REAL, dest, tag, comm%m_comm, request%m_request, ierr)
      request%is_valid = .true.
   end subroutine comm_isend_real_sp