41 use ctlblk_mod
, only: num_procs, jend, iup, jsta, idn, mpi_comm_comp, im,&
48 real,
intent(inout) :: a ( im,jsta_2l:jend_2u )
49 integer status(mpi_status_size)
50 integer ierr, jstam2, jendp1
52 if ( num_procs <= 1 )
return
54 jstam2 = max(jsta_2l,jsta-2)
55 call mpi_sendrecv(a(1,jend-1),2*im,mpi_real,iup,1, &
56 & a(1,jstam2),2*im,mpi_real,idn,1, &
57 & mpi_comm_comp,status,ierr)
59 print *,
' problem with first sendrecv in exch2, ierr = ',ierr
62 jendp1 = min(jend+1,jend_2u)
63 call mpi_sendrecv(a(1,jsta),2*im,mpi_real,idn,1, &
64 & a(1,jendp1),2*im,mpi_real,iup,1, &
65 & mpi_comm_comp,status,ierr)
67 print *,
' problem with second sendrecv in exch2, ierr = ',ierr