FIXME : Add documentation
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real, | intent(inout), | dimension(:,:,:,:,:) | :: | a |
subroutine broadcast_real_5array(a)
implicit none
real, dimension(:,:,:,:,:), intent (in out) :: a
# ifdef MPI
integer :: ierror
!$OMP MASTER
call time_message(.false., time_mp_collectives, ' MPI Collectives')
!$OMP END MASTER
call mpi_bcast (a, size(a), mpireal, 0, mp_comm, ierror)
!$OMP MASTER
call time_message(.false., time_mp_collectives, ' MPI Collectives')
!$OMP END MASTER
# else
UNUSED_DUMMY(a)
# endif
end subroutine broadcast_real_5array