1 SUBROUTINE allgetherv(GRID1)
13 use ctlblk_mod
, only : im,jm,num_procs,me,jsta,jend,mpi_comm_comp
25 REAL ibufsend(im*(jend-jsta+1))
26 integer sendcount,recvcounts(num_procs),displs(num_procs)
29 sendcount=im*(jend-jsta+1)
30 call mpi_allgather(sendcount, 1, mpi_integer, recvcounts,1 , &
31 mpi_integer, mpi_comm_comp, ierr)
34 displs(i)=displs(i-1)+recvcounts(i-1)
45 ibufsend(ij)=grid1(i,j)
48 if(ij /= recvcounts(me+1))
then
49 write(*,*)
'Error: send account is not equal to receive account',me,ij,recvcounts(me+1)
52 call mpi_allgatherv(ibufsend, ij, mpi_real, ibufrecv, recvcounts,displs, &
53 mpi_real, mpi_comm_comp, ierr)
59 grid1(i,j)=ibufrecv(ij)