FIXME : Add documentation
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
logical, | intent(inout) | :: | f |
subroutine broadcast_logical (f)
implicit none
logical, intent (in out) :: f
# ifdef MPI
integer :: ierror,rc
!$OMP MASTER
call time_message(.false., time_mp_collectives, ' MPI Collectives')
!$OMP END MASTER
call mpi_bcast (f, 1, MPI_LOGICAL, 0, mp_comm, ierror)
if (ierror .ne. MPI_SUCCESS) &
call MPI_ABORT(MPI_COMM_WORLD, rc, ierror)
!$OMP MASTER
call time_message(.false., time_mp_collectives, ' MPI Collectives')
!$OMP END MASTER
# else
UNUSED_DUMMY(f)
# endif
end subroutine broadcast_logical