comm_send_real_dp_array Subroutine

private subroutine comm_send_real_dp_array(comm, data, dest, tag)

Blocking send of a double precision real array to specified destination

Arguments

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

Calls

proc~~comm_send_real_dp_array~~CallsGraph proc~comm_send_real_dp_array comm_send_real_dp_array mpi_send mpi_send proc~comm_send_real_dp_array->mpi_send

Called by

proc~~comm_send_real_dp_array~~CalledByGraph proc~comm_send_real_dp_array comm_send_real_dp_array interface~send send interface~send->proc~comm_send_real_dp_array

Variables

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

Source Code

   subroutine comm_send_real_dp_array(comm, data, dest, tag)
      !! Blocking send of a double precision real array to specified destination
      type(comm_t), intent(in) :: comm
      real(dp), intent(in) :: data(:)
      integer(int32), intent(in) :: dest
      integer(int32), intent(in) :: tag
      integer(int32) :: ierr

      call MPI_Send(data, size(data), MPI_DOUBLE_PRECISION, dest, tag, comm%m_comm, ierr)
   end subroutine comm_send_real_dp_array