comm_send_integer Subroutine

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

Arguments

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

Calls

proc~~comm_send_integer~2~~CallsGraph proc~comm_send_integer~2 comm_send_integer mpi_send mpi_send proc~comm_send_integer~2->mpi_send

Called by

proc~~comm_send_integer~2~~CalledByGraph proc~comm_send_integer~2 comm_send_integer interface~send~2 send interface~send~2->proc~comm_send_integer~2

Variables

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

Source Code

   subroutine comm_send_integer(comm, data, dest, tag)
      type(comm_t), intent(in) :: comm
      integer(int32), intent(in) :: data
      integer(int32), intent(in) :: dest
      integer(int32), intent(in) :: tag
      integer(int32) :: ierr

      call MPI_Send(data, 1_int32, MPI_INTEGER, dest, tag, comm%m_comm, ierr)
   end subroutine comm_send_integer