UPP  001
 All Data Structures Files Functions Pages
COLLECT_LOC.f
Go to the documentation of this file.
1 
15  SUBROUTINE collect_loc ( A, B )
16 
17 
18  use ctlblk_mod, only: num_procs, jsta, icnt, idsp, mpi_comm_comp, im,&
19  jsta_2l, jend_2u, jm, me
20 !- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
21  implicit none
22 !
23  include 'mpif.h'
24  real, dimension(im,jsta_2l:jend_2u), intent(in) :: a
25  real, dimension(im,jm), intent(out) :: b
26  integer ierr
27 !
28  if ( num_procs <= 1 ) then
29  b = a
30  else
31  call mpi_gatherv(a(1,jsta),icnt(me),mpi_real, &
32  & b,icnt,idsp,mpi_real,0,mpi_comm_comp, ierr )
33 
34  end if
35 
36  end