/[MITgcm]/MITgcm/eesupp/src/gather_yz.F
ViewVC logotype

Contents of /MITgcm/eesupp/src/gather_yz.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download)
Wed Jun 7 21:29:15 2006 UTC (17 years, 11 months ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint58l_post, checkpoint58n_post, checkpoint58j_post, checkpoint58i_post, checkpoint58o_post, checkpoint58k_post, checkpoint58p_post, checkpoint58m_post
Support routines for sliced useSingleCpuIO
with fixes by M. Mazloff

1 C $Header: /u/gcmpack/MITgcm/eesupp/src/gather_2d.F,v 1.4 2003/11/06 22:00:31 heimbach Exp $
2 C $Name: $
3
4 #include "CPP_OPTIONS.h"
5
6 SUBROUTINE GATHER_YZ( global, local, myThid )
7 C Gather elements of a y-z array from all mpi processes to process 0.
8 IMPLICIT NONE
9 #include "SIZE.h"
10 #include "EEPARAMS.h"
11 #include "EESUPPORT.h"
12 C mythid - thread number for this instance of the routine.
13 C global,local - working arrays used to transfer 2-D fields
14 INTEGER mythid
15 Real*8 global(Ny)
16 _RL local(1-OLy:sNy+OLy,nSx,nSy)
17
18 INTEGER jG, j, bi, bj
19 #ifdef ALLOW_USE_MPI
20
21 _RL temp(1-OLy:sNy+OLy,nSx,nSy)
22
23 INTEGER istatus(MPI_STATUS_SIZE), ierr
24 INTEGER lbuff, idest, itag, npe, ready_to_receive
25 #endif /* ALLOW_USE_MPI */
26
27 C-- Make everyone wait except for master thread.
28 _BARRIER
29 _BEGIN_MASTER( myThid )
30
31 #ifndef ALLOW_USE_MPI
32
33 DO bj=1,nSy
34 DO bi=1,nSx
35 DO j=1,sNy
36 jG = myYGlobalLo-1+(bi-1)*sNy+j
37 global(jG) = local(j,bi,bj)
38 ENDDO
39 ENDDO
40 ENDDO
41
42 #else /* ALLOW_USE_MPI */
43
44 lbuff = (sNy+2*OLy)*nSx*nSy
45 idest = 0
46 itag = 0
47 ready_to_receive = 0
48
49 IF( mpiMyId .EQ. 0 ) THEN
50
51 C-- Process 0 fills-in its local data
52 npe = 0
53 DO bj=1,nSy
54 DO bi=1,nSx
55 DO j=1,sNy
56 jG = mpi_myYGlobalLo(npe+1)-1+(bi-1)*sNy+j
57 global(jG) = local(j,bi,bj)
58 ENDDO
59 ENDDO
60 ENDDO
61
62 C-- Process 0 polls and receives data from each process in turn
63 DO npe = 1, numberOfProcs-1
64 CALL MPI_SEND (ready_to_receive, 1, MPI_INTEGER,
65 & npe, itag, MPI_COMM_MODEL, ierr)
66 CALL MPI_RECV (temp, lbuff, MPI_DOUBLE_PRECISION,
67 & npe, itag, MPI_COMM_MODEL, istatus, ierr)
68
69 C-- Process 0 gathers the local arrays into a global array.
70 DO bj=1,nSy
71 DO bi=1,nSx
72 DO j=1,sNy
73 jG = mpi_myYGlobalLo(npe+1)-1+(bi-1)*sNy+j
74 global(jG) = temp(j,bi,bj)
75 ENDDO
76 ENDDO
77 ENDDO
78 ENDDO
79
80 ELSE
81
82 C-- All proceses except 0 wait to be polled then send local array
83 CALL MPI_RECV (ready_to_receive, 1, MPI_INTEGER,
84 & idest, itag, MPI_COMM_MODEL, istatus, ierr)
85 CALL MPI_SEND (local, lbuff, MPI_DOUBLE_PRECISION,
86 & idest, itag, MPI_COMM_MODEL, ierr)
87
88 ENDIF
89
90 #endif /* ALLOW_USE_MPI */
91
92 _END_MASTER( myThid )
93 _BARRIER
94
95 RETURN
96 END

  ViewVC Help
Powered by ViewVC 1.1.22