[24121] | 1 | #include "CPP_EEOPTIONS.h"
|
---|
| 2 | #ifdef USE_LIBHPM
|
---|
| 3 | # include "f_hpm.h"
|
---|
| 4 | #endif
|
---|
| 5 |
|
---|
| 6 | CBOP
|
---|
| 7 | SUBROUTINE EEDIE
|
---|
| 8 | C *==========================================================*
|
---|
| 9 | C | SUBROUTINE EEDIE |
|
---|
| 10 | C | o Close execution "environment", particularly perform |
|
---|
| 11 | C | steps to terminate parallel processing. |
|
---|
| 12 | C *==========================================================*
|
---|
| 13 | C | Note: This routine can also be compiled with CPP |
|
---|
| 14 | C | directives set so that no multi-processing is initialised|
|
---|
| 15 | C | This is OK and should work fine. |
|
---|
| 16 | C *==========================================================*
|
---|
| 17 | IMPLICIT NONE
|
---|
| 18 |
|
---|
| 19 | C == Global variables ==
|
---|
| 20 | #include "SIZE.h"
|
---|
| 21 | #include "EEPARAMS.h"
|
---|
| 22 | #include "EESUPPORT.h"
|
---|
| 23 | CEOP
|
---|
| 24 |
|
---|
| 25 | C == Local variables ==
|
---|
| 26 | C msgBuf :: I/O Buffer
|
---|
| 27 | C nThreadsDone :: Used to count number of completed threads.
|
---|
| 28 | C I :: Loop counter.
|
---|
| 29 | CHARACTER*(MAX_LEN_MBUF) msgBuf
|
---|
| 30 | INTEGER nThreadsDone
|
---|
| 31 | INTEGER I
|
---|
| 32 | #ifdef ALLOW_USE_MPI
|
---|
| 33 | C mpiRC :: Error code reporting variable used with MPI.
|
---|
| 34 | INTEGER mpiRC
|
---|
| 35 | #endif /* ALLOW_USE_MPI */
|
---|
| 36 |
|
---|
| 37 | IF ( eeBootError ) THEN
|
---|
| 38 | C-- 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
|
---|
| 45 | C-- Check that all the threads have ended
|
---|
| 46 | C No thread should reach this loop before all threads have set
|
---|
| 47 | C threadIsComplete to TRUE. If they do then either there is a bug
|
---|
| 48 | C in the code or the behaviour of the parallel compiler directives
|
---|
| 49 | C are not right for this code. In the latter case different
|
---|
| 50 | C directives may be available or the compiler itself may have a
|
---|
| 51 | C 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 |
|
---|
| 67 | C-- end if/else eebootError
|
---|
| 68 | ENDIF
|
---|
| 69 |
|
---|
| 70 | #ifdef USE_LIBHPM
|
---|
| 71 | CALL F_HPMTERMINATE(myProcId)
|
---|
| 72 | #endif
|
---|
| 73 |
|
---|
| 74 | C-- Flush IO-unit before MPI termination
|
---|
| 75 | CALL MDS_FLUSH( errorMessageUnit, 1 )
|
---|
| 76 | c#ifdef ALLOW_USE_MPI
|
---|
| 77 | CALL MDS_FLUSH( standardMessageUnit, 1 )
|
---|
| 78 | c#endif /* ALLOW_USE_MPI */
|
---|
| 79 |
|
---|
| 80 | #ifdef ALLOW_USE_MPI
|
---|
| 81 | C- Note: since MPI_INIT is always called, better to also always terminate MPI
|
---|
| 82 | C (even if usingMPI=F) --> comment out test on usingMPI
|
---|
| 83 | c IF ( usingMPI ) THEN
|
---|
| 84 |
|
---|
| 85 | C-- MPI style multiple-process termination
|
---|
| 86 | C-- ======================================
|
---|
| 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 |
|
---|
| 103 | c ENDIF
|
---|
| 104 | #endif /* ALLOW_USE_MPI */
|
---|
| 105 |
|
---|
| 106 | RETURN
|
---|
| 107 | END
|
---|