FIXME : Add documentation
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
complex, | intent(inout), | dimension (:,:) | :: | z | ||
integer, | intent(in) | :: | sub_comm |
subroutine sum_allreduce_sub_complex_2array (z,sub_comm)
implicit none
complex, dimension (:,:), intent (in out) :: z
integer, intent(in) :: sub_comm
# ifdef MPI
integer :: ierror
!$OMP MASTER
call time_message(.false., time_mp_collectives, ' MPI Collectives')
!$OMP END MASTER
call mpi_allreduce &
(MPI_IN_PLACE, z, size(z), mpicmplx, MPI_SUM, sub_comm, ierror)
!$OMP MASTER
call time_message(.false., time_mp_collectives, ' MPI Collectives')
!$OMP END MASTER
# else
UNUSED_DUMMY(sub_comm); UNUSED_DUMMY(z)
# endif
end subroutine sum_allreduce_sub_complex_2array