C $Header: /home/ubuntu/mnt/e9_copy/MITgcm/pkg/compon_communic/couprecv_r8.F,v 1.2 2007/10/08 23:58:20 jmc Exp $ C $Name: $ !======================================================================= subroutine couprecv_r8( component, dataname, Nx, Ny, arr ) implicit none ! Arguments character*(*) component character*(*) dataname integer Nx,Ny real*8 arr(Nx,Ny) ! Predefined constants/arrays #include "CPLR_SIG.h" ! MPI variables #include "mpif.h" integer count,dtype,rank,tag,comm,ierr integer stat(MPI_STATUS_SIZE) ! Functions integer mitcplr_match_comp integer generate_tag ! Local integer compind,numprocs integer i,j,ij,n integer Ni,Io,Nj,Jo character*(MAXLEN_COMP_NAME) recvdname ! ------------------------------------------------------------------ ! Establish who I am communicating with compind=mitcplr_match_comp( component ) if (compind.le.0) stop 'couprecv_r8: Bad component id' comm=MPI_COMM_compcplr( compind ) numprocs=num_component_procs(compind) if (numprocs.lt.1) then write(LogUnit,*) 'couprecv_r8: compind = ',compind stop 'couprecv_r8: numprocs < 1' endif if (VERB) & write(LogUnit,*) 'couprecv_r8: ',component_Name(compind) if (VERB) & write(LogUnit,*) 'couprecv_r8: dataname=',dataname ! Foreach component process do n=1,numprocs ! Receive message count=HEADER_SIZE+MAX_R8_BUFLEN dtype=MPI_DOUBLE_PRECISION tag=generate_tag(102,n,dataname) rank=rank_component_procs(n,compind) if (VERB) then write(LogUnit,*) 'couprecv_r8: calling MPI_Recv rank=',rank, & ' proc=',n,'/',numprocs call flush(LogUnit) endif call MPI_Recv(r8buf, count, dtype, rank, tag, comm, stat, ierr) if (VERB) then write(LogUnit,*) 'couprecv_r8: returned ierr=',ierr call flush(LogUnit) endif if (ierr.ne.0) then write(LogUnit,*) 'couprecv_r8tiles: rank(W,G)=', & my_rank_in_world,my_rank_in_global, & ' ierr=',ierr stop 'couprecv_r8: MPI_Recv failed' endif ! Extract header Io=int(0.5+r8buf(1)) Ni=int(0.5+r8buf(2)) Jo=int(0.5+r8buf(3)) Nj=int(0.5+r8buf(4)) if (Io+Ni-1.gt.Nx .or. Io.lt.1) then write(LogUnit,*) 'couprecv_r8tiles: Io,Ni=',Io,Ni stop 'couprecv_r8: Incompatible header/target array' endif if (Jo+Nj-1.gt.Ny .or. Jo.lt.1) then write(LogUnit,*) 'couprecv_r8tiles: Jo,Nj=',Jo,Nj stop 'couprecv_r8: Incompatible header/target array' endif call mitcplr_real2char( r8buf(9), recvdname ) if (recvdname .ne. dataname) then write(LogUnit,*) 'couprecv_r8: recvdname = ',recvdname write(LogUnit,*) 'couprecv_r8: dataname = ',dataname stop 'couprecv_r8: recvdname != dataname' endif ! Extract data do j=1,Nj do i=1,Ni ij=HEADER_SIZE+i+Ni*(j-1) arr(Io+i-1,Jo+j-1)=r8buf(ij) enddo enddo enddo ! ------------------------------------------------------------------ return end !=======================================================================