source: issm/trunk-jpl/test/MITgcm/code_4003/eedie.F@ 24121

Last change on this file since 24121 was 24121, checked in by dmenemen, 6 years ago

adding MITgcm code and input directories for experiment 4003

File size: 3.5 KB
Line 
1#include "CPP_EEOPTIONS.h"
2#ifdef USE_LIBHPM
3# include "f_hpm.h"
4#endif
5
6CBOP
7 SUBROUTINE EEDIE
8C *==========================================================*
9C | SUBROUTINE EEDIE |
10C | o Close execution "environment", particularly perform |
11C | steps to terminate parallel processing. |
12C *==========================================================*
13C | Note: This routine can also be compiled with CPP |
14C | directives set so that no multi-processing is initialised|
15C | This is OK and should work fine. |
16C *==========================================================*
17 IMPLICIT NONE
18
19C == Global variables ==
20#include "SIZE.h"
21#include "EEPARAMS.h"
22#include "EESUPPORT.h"
23CEOP
24
25C == Local variables ==
26C msgBuf :: I/O Buffer
27C nThreadsDone :: Used to count number of completed threads.
28C I :: Loop counter.
29 CHARACTER*(MAX_LEN_MBUF) msgBuf
30 INTEGER nThreadsDone
31 INTEGER I
32#ifdef ALLOW_USE_MPI
33C mpiRC :: Error code reporting variable used with MPI.
34 INTEGER mpiRC
35#endif /* ALLOW_USE_MPI */
36
37 IF ( eeBootError ) THEN
38C-- Skip ended threads counting if earlier error was found
39 WRITE(msgBuf,'(2A)')
40 & 'EEDIE: earlier error in multi-proc/thread setting'
41 CALL PRINT_ERROR( msgBuf, 1 )
42 fatalError = .TRUE.
43
44 ELSE
45C-- Check that all the threads have ended
46C No thread should reach this loop before all threads have set
47C threadIsComplete to TRUE. If they do then either there is a bug
48C in the code or the behaviour of the parallel compiler directives
49C are not right for this code. In the latter case different
50C directives may be available or the compiler itself may have a
51C bug or you may need a different parallel compiler for main.F
52 nThreadsDone = 0
53 DO I = 1, nThreads
54 IF ( threadIsComplete(I) ) nThreadsDone = nThreadsDone+1
55 ENDDO
56 IF ( nThreadsDone .LT. nThreads ) THEN
57 WRITE(msgBuf,'(A,I5,A)')
58 & 'S/R EEDIE: Only',nThreadsDone,' threads have completed,'
59 CALL PRINT_ERROR( msgBuf, 1 )
60 WRITE(msgBuf,'(A,I5,A)')
61 & 'S/R EEDIE:',nThreads,' are expected for this config !'
62 CALL PRINT_ERROR( msgBuf, 1 )
63 eeEndError = .TRUE.
64 fatalError = .TRUE.
65 ENDIF
66
67C-- end if/else eebootError
68 ENDIF
69
70#ifdef USE_LIBHPM
71 CALL F_HPMTERMINATE(myProcId)
72#endif
73
74C-- Flush IO-unit before MPI termination
75 CALL MDS_FLUSH( errorMessageUnit, 1 )
76c#ifdef ALLOW_USE_MPI
77 CALL MDS_FLUSH( standardMessageUnit, 1 )
78c#endif /* ALLOW_USE_MPI */
79
80#ifdef ALLOW_USE_MPI
81C- Note: since MPI_INIT is always called, better to also always terminate MPI
82C (even if usingMPI=F) --> comment out test on usingMPI
83c IF ( usingMPI ) THEN
84
85C-- MPI style multiple-process termination
86C-- ======================================
87#if (defined COMPONENT_MODULE) || (defined ALLOW_CPL_ISSM)
88 IF ( useCoupler) CALL MPI_BARRIER( MPI_COMM_WORLD, mpiRC )
89#endif
90#ifdef ALLOW_OASIS
91 IF ( useOASIS ) CALL OASIS_FINALIZE
92#endif
93 CALL MPI_FINALIZE ( mpiRC )
94 IF ( mpiRC .NE. MPI_SUCCESS ) THEN
95 eeEndError = .TRUE.
96 fatalError = .TRUE.
97 WRITE(msgBuf,'(A,I5)')
98 & 'S/R FIN_PROCS: MPI_FINALIZE return code',
99 & mpiRC
100 CALL PRINT_ERROR( msgBuf, 1 )
101 ENDIF
102
103c ENDIF
104#endif /* ALLOW_USE_MPI */
105
106 RETURN
107 END
Note: See TracBrowser for help on using the repository browser.