Gathers a datum from all processes and all processes receive the same data
Data size All processes send equal-sized data
MPI mapping mpi_allgather
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=int_8), | intent(in) | :: | msgout |
Datum to send |
||
integer(kind=int_8), | intent(out), | CONTIGUOUS | :: | msgin(:,:) |
Received data |
|
type(mp_comm_type), | intent(in) | :: | gid |
Message passing environment identifier |
SUBROUTINE mp_allgather_l2(msgout, msgin, gid) !! Gathers a datum from all processes and all processes receive the !! same data !! !! Data size !! All processes send equal-sized data !! !! MPI mapping !! mpi_allgather INTEGER(KIND=int_8), INTENT(IN) :: msgout !! Datum to send INTEGER(KIND=int_8), CONTIGUOUS, INTENT(OUT) :: msgin(:, :) !! Received data TYPE(mp_comm_type), INTENT(IN) :: gid !! Message passing environment identifier CHARACTER(LEN=*), PARAMETER :: routineN = 'mp_allgather_l2' INTEGER :: handle, ierr #if defined(__parallel) INTEGER :: rcount, scount #endif ierr = 0 CALL timeset(routineN, handle) #if defined(__parallel) scount = 1 rcount = 1 CALL MPI_ALLGATHER(msgout, scount, MPI_INTEGER8, & msgin, rcount, MPI_INTEGER8, & gid%handle, ierr) IF (ierr /= 0) CALL mp_stop(ierr, "mpi_allgather @ "//routineN) #else MARK_USED(gid) msgin = msgout #endif CALL timestop(handle) END SUBROUTINE mp_allgather_l2