Logical OR reduction
MPI mapping mpi_allreduce
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
logical, | intent(inout), | DIMENSION(:), CONTIGUOUS | :: | msg |
Datum to perform inclusive disjunction (input) and resultant inclusive disjunction (output) |
|
type(mp_comm_type), | intent(in) | :: | gid |
Message passing environment identifier |
||
type(mp_request_type), | intent(inout) | :: | request |
SUBROUTINE mp_isum_bv(msg, gid, request) !! Logical OR reduction !! !! MPI mapping !! mpi_allreduce LOGICAL, DIMENSION(:), CONTIGUOUS, INTENT(INOUT) :: msg !! Datum to perform inclusive disjunction (input) and resultant inclusive disjunction (output) TYPE(mp_comm_type), INTENT(IN) :: gid !! Message passing environment identifier TYPE(mp_request_type), INTENT(INOUT) :: request CHARACTER(LEN=*), PARAMETER :: routineN = 'mp_isum_bv' INTEGER :: handle, ierr, msglen CALL timeset(routineN, handle) ierr = 0 msglen = SIZE(msg) #if defined(__parallel) IF (msglen .GT. 0) THEN CALL mpi_iallreduce(MPI_IN_PLACE, msg, msglen, MPI_LOGICAL, MPI_LOR, gid%handle, request%handle, ierr) IF (ierr /= 0) CALL mp_stop(ierr, "mpi_iallreduce @ "//routineN) ELSE request = mp_request_null END IF #else MARK_USED(msg) MARK_USED(gid) MARK_USED(request) #endif CALL timestop(handle) END SUBROUTINE mp_isum_bv