comm_allgather_integer Subroutine

private subroutine comm_allgather_integer(comm, sendbuf, recvbuf)

Arguments

Type IntentOptional Attributes Name
type(comm_t), intent(in) :: comm
integer(kind=int32), intent(in) :: sendbuf
integer(kind=int32), intent(out) :: recvbuf(:)

Calls

proc~~comm_allgather_integer~2~~CallsGraph proc~comm_allgather_integer~2 comm_allgather_integer mpi_allgather mpi_allgather proc~comm_allgather_integer~2->mpi_allgather

Called by

proc~~comm_allgather_integer~2~~CalledByGraph proc~comm_allgather_integer~2 comm_allgather_integer interface~allgather~2 allgather interface~allgather~2->proc~comm_allgather_integer~2

Variables

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

Source Code

   subroutine comm_allgather_integer(comm, sendbuf, recvbuf)
      type(comm_t), intent(in) :: comm
      integer(int32), intent(in) :: sendbuf
      integer(int32), intent(out) :: recvbuf(:)
      integer(int32) :: ierr

      call MPI_Allgather(sendbuf, 1_int32, MPI_INTEGER, recvbuf, 1_int32, MPI_INTEGER, comm%m_comm, ierr)
   end subroutine comm_allgather_integer