Non-blocking send of vector data
Note
see mp_isendrecv_rv
Note
arrays can be pointers or assumed shape, but they must be contiguous!
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=real_4), | CONTIGUOUS, DIMENSION(:) | :: | msgin | |||
integer, | intent(in) | :: | dest | |||
type(mp_comm_type), | intent(in) | :: | comm | |||
type(mp_request_type), | intent(out) | :: | request | |||
integer, | intent(in), | optional | :: | tag |
SUBROUTINE mp_isend_rv(msgin, dest, comm, request, tag) !! Non-blocking send of vector data !! @note see mp_isendrecv_rv !! @endnote !! @note !! arrays can be pointers or assumed shape, but they must be contiguous! REAL(kind=real_4), CONTIGUOUS, DIMENSION(:) :: msgin INTEGER, INTENT(IN) :: dest TYPE(mp_comm_type), INTENT(IN) :: comm TYPE(mp_request_type), INTENT(out) :: request INTEGER, INTENT(in), OPTIONAL :: tag CHARACTER(LEN=*), PARAMETER :: routineN = 'mp_isend_rv' INTEGER :: handle, ierr #if defined(__parallel) INTEGER :: msglen, my_tag REAL(kind=real_4) :: foo(1) #endif ierr = 0 CALL timeset(routineN, handle) #if defined(__parallel) my_tag = 0 IF (PRESENT(tag)) my_tag = tag msglen = SIZE(msgin) IF (msglen > 0) THEN CALL mpi_isend(msgin, msglen, MPI_REAL, dest, my_tag, & comm%handle, request%handle, ierr) ELSE CALL mpi_isend(foo, msglen, MPI_REAL, dest, my_tag, & comm%handle, request%handle, ierr) END IF IF (ierr /= 0) CALL mp_stop(ierr, "mpi_isend @ "//routineN) CALL add_perf(perf_id=11, msg_size=msglen*real_4_size) #else MARK_USED(msgin) MARK_USED(dest) MARK_USED(comm) MARK_USED(request) MARK_USED(tag) ierr = 1 request = mp_request_null CALL mp_stop(ierr, "mp_isend called in non parallel case") #endif CALL timestop(handle) END SUBROUTINE mp_isend_rv