Update version info for release v4.6.1 (#2122)
[WRF.git] / var / da / da_par_util / da_proc_sum_real.inc
blob9f719957bc6c4c4f1806119bf1f4a8f2905950e4
1 subroutine da_proc_sum_real (value)
3    !---------------------------------------------------------------------------
4    ! Purpose: Do MPI reduction operation across processors to sum a real 
5    ! vector.  
6    ! On return, each of the N components of the vector "value" represents
7    ! the sum of parts from each processor. The result is stored only on 
8    ! the root processor, i.e., processor 0. (In this way, we do not have 
9    ! to do all-to-all communication, unlike wrf_dm_sum_real, which does)
10    !
11    ! The routine generates a MPI barrier
12    !---------------------------------------------------------------------------
14    implicit none
16    real, intent(inout) :: value(:) ! Array to be summed componentwise.
18 #ifdef DM_PARALLEL
19    real              :: apsum(size(value))             ! Sum across processors.
21    ! Don't trace, as called within trace routines
22    !if (trace_use_frequent) call da_trace_entry("da_proc_sum_real")
24    apsum(:)=0
25    call mpi_reduce(value, apsum, SIZE(value), true_mpi_real, mpi_sum, root, &
26       comm, ierr)
28    if (rootproc) value = apsum
30    !if (trace_use_frequent) call da_trace_exit("da_proc_sum_real")
31 #endif
33 end subroutine da_proc_sum_real