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

Annotation of /MITgcm/eesupp/src/eeboot_minimal.F

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


Revision 1.9 - (hide annotations) (download)
Fri Mar 7 05:13:49 2003 UTC (21 years, 4 months ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint50c_pre, checkpoint50, checkpoint50b_pre, checkpoint50a_post, checkpoint50b_post
Changes since 1.8: +4 -3 lines
merging

1 heimbach 1.9 C $Header: /u/gcmpack/MITgcm/eesupp/src/eeboot_minimal.F,v 1.8.6.1 2002/04/04 10:19:15 heimbach Exp $
2 cnh 1.8 C $Name: $
3 cnh 1.1
4     #include "CPP_EEOPTIONS.h"
5    
6 cnh 1.8 CBOP
7     C !ROUTINE: EEBOOT_MINIMAL
8    
9     C !INTERFACE:
10 cnh 1.1 SUBROUTINE EEBOOT_MINIMAL
11 adcroft 1.6 IMPLICIT NONE
12 cnh 1.1
13 cnh 1.8 C !DESCRIPTION:
14     C *==========================================================*
15     C | SUBROUTINE EEBOOT_MINIMAL
16     C | o Set an initial environment that is predictable i.e.
17     C | behaves in a similar way on all machines and stable.
18     C *==========================================================*
19     C | Under MPI this routine calls MPI_INIT to setup the
20     C | mpi environment ( on some systems the code is running as
21     C | a single process prior to MPI_INIT, on others the mpirun
22     C | script has already created multiple processes). Until
23     C | MPI_Init is called it is unclear what state the
24     C | application is in. Once this routine has been run it is
25     C | "safe" to do things like I/O to report erros and to get
26     C | run parameters.
27     C | Note: This routine can also be compiled with CPP
28     C | directives set so that no multi-processing is initialise.
29     C | This is OK and will work fine.
30     C *==========================================================*
31    
32     C !USES:
33     C == Global data ==
34 cnh 1.1 #include "SIZE.h"
35     #include "EEPARAMS.h"
36     #include "EESUPPORT.h"
37    
38 cnh 1.8 C !LOCAL VARIABLES:
39     C == Local variables ==
40     C myThid :: Temp. dummy thread number.
41 cnh 1.1 INTEGER myThid
42     #ifdef ALLOW_USE_MPI
43 cnh 1.8 C mpiRC :: Error code reporting variable used
44     C with MPI.
45     C fNam :: Used to build name of file for standard
46     C output and error output.
47     C msgBuffer :: Used to build messages for printing.
48 cnh 1.1 CHARACTER*(MAX_LEN_MBUF) msgBuffer
49     INTEGER mpiRC
50     CHARACTER*13 fNam
51     #endif /* ALLOW_USE_MPI */
52 cnh 1.8 CEOP
53 cnh 1.1
54     C-- Default values set to single processor case
55     numberOfProcs = 1
56     myProcId = 0
57     pidIO = myProcId
58 adcroft 1.6 myProcessStr = '------'
59 cnh 1.4 C Set a dummy value for myThid because we are not multi-threading
60 cnh 1.1 C yet.
61     myThid = 1
62     #ifdef ALLOW_USE_MPI
63     C--
64     C-- MPI style multiple-process initialisation
65     C-- =========================================
66     #ifndef ALWAYS_USE_MPI
67     IF ( usingMPI ) THEN
68     #endif
69     C-- Initialise MPI multi-process parallel environment.
70     C On some systems program forks at this point. Others have already
71     C forked within mpirun - now thats an open standard!
72     CALL MPI_INIT( mpiRC )
73     IF ( mpiRC .NE. MPI_SUCCESS ) THEN
74     eeBootError = .TRUE.
75 adcroft 1.6 WRITE(msgBuffer,'(A,I5)')
76 cnh 1.1 & 'S/R INI_PROCS: MPI_INIT return code',
77     & mpiRC
78     CALL PRINT_ERROR( msgBuffer , myThid)
79     GOTO 999
80     ENDIF
81 adcroft 1.5 C-- MPI has now been initialized but now we need to either
82     C ask for a communicator or pretend that we have:
83     C Pretend that we have asked for a communicator
84     MPI_COMM_MODEL = MPI_COMM_WORLD
85 adcroft 1.6 C Ask coupler interface for a communicator
86     c hook call MITCOMPONENT_init( 'MITgcmUV', MPI_COMM_MODEL )
87 adcroft 1.5
88 cnh 1.1 C-- Get my process number
89 adcroft 1.5 CALL MPI_COMM_RANK( MPI_COMM_MODEL, mpiMyId, mpiRC )
90 cnh 1.1 IF ( mpiRC .NE. MPI_SUCCESS ) THEN
91     eeBootError = .TRUE.
92 adcroft 1.6 WRITE(msgBuffer,'(A,I5)')
93 cnh 1.1 & 'S/R INI_PROCS: MPI_COMM_RANK return code',
94     & mpiRC
95     CALL PRINT_ERROR( msgBuffer , myThid)
96     GOTO 999
97     ENDIF
98     myProcId = mpiMyId
99     WRITE(myProcessStr,'(I4.4)') myProcId
100     mpiPidIo = myProcId
101     pidIO = mpiPidIo
102     IF ( mpiPidIo .EQ. myProcId ) THEN
103     WRITE(fNam,'(A,A)') 'STDERR.', myProcessStr(1:4)
104     OPEN(errorMessageUnit,FILE=fNam,STATUS='unknown')
105     WRITE(fNam,'(A,A)') 'STDOUT.', myProcessStr(1:4)
106     OPEN(standardMessageUnit,FILE=fNam,STATUS='unknown')
107     ENDIF
108    
109     C-- Synchronise all processes
110     C Strictly this is superfluous, but by using it we can guarantee to
111 cnh 1.4 C find out about processes that did not start up.
112 adcroft 1.5 CALL MPI_BARRIER( MPI_COMM_MODEL, mpiRC )
113 cnh 1.1 IF ( mpiRC .NE. MPI_SUCCESS ) THEN
114     eeBootError = .TRUE.
115 adcroft 1.6 WRITE(msgBuffer,'(A,I5)')
116 cnh 1.1 & 'S/R INI_PROCS: MPI_BARRIER return code',
117     & mpiRC
118     CALL PRINT_ERROR( msgBuffer , myThid)
119     GOTO 999
120     ENDIF
121    
122     C-- Get number of MPI processes
123 adcroft 1.5 CALL MPI_COMM_SIZE ( MPI_COMM_MODEL, mpiNProcs, mpiRC )
124 cnh 1.1 IF ( mpiRC .NE. MPI_SUCCESS ) THEN
125     eeBootError = .TRUE.
126 adcroft 1.6 WRITE(msgBuffer,'(A,I5)')
127 cnh 1.1 & 'S/R INI_PROCS: MPI_COMM_SIZE return code',
128     & mpiRC
129     CALL PRINT_ERROR( msgBuffer , myThid)
130     GOTO 999
131     ENDIF
132     numberOfProcs = mpiNProcs
133    
134 cnh 1.4 C-- Can not have more processes than compile time MAX_NO_PROCS
135 cnh 1.1 IF ( numberOfProcs .GT. MAX_NO_PROCS ) THEN
136     eeBootError = .TRUE.
137     WRITE(msgBuffer,'(A)')
138     & 'S/R INI_PROCS: No. of processes too large'
139     CALL PRINT_ERROR( msgBuffer , myThid)
140     GOTO 999
141     ENDIF
142     C-- Under MPI only allow same number of processes as proc.
143     C-- grid size.
144     C Strictly we are allowed more procs. but knowing there
145     C is an exact match makes things easier.
146     IF ( numberOfProcs .NE. nPx*nPy ) THEN
147     eeBootError = .TRUE.
148 heimbach 1.9 WRITE(msgBuffer,'(A,2(X,I))')
149     & 'S/R INI_PROCS: No. of processes not equal to nPx*nPy',
150     & numberOfProcs, nPx*nPy
151 cnh 1.1 CALL PRINT_ERROR( msgBuffer , myThid)
152     GOTO 999
153     ENDIF
154    
155     #ifndef ALWAYS_USE_MPI
156     ENDIF
157     #endif
158     #endif /* ALLOW_USE_MPI */
159    
160     999 CONTINUE
161    
162     RETURN
163     END
164    

  ViewVC Help
Powered by ViewVC 1.1.22