1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
|
!
! Copyright (C) 2002-2013 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!
! ... This module contains functions and variables used to check whether the
! ... code should be smoothly stopped. In order to use this module, function
! ... "check_stop_init" must be called (only once) at the beginning of the
! ... calculation, optionally setting "max_seconds"
! ... Function "check_stop_now" returns .TRUE. if either the user has created
! ... an "exit" file, or if the elapsed wall time is larger than "max_seconds",
! ... or if these conditions have been met in a previous call of check_stop_now.
! ... Moreover, function check_stop_now removes the exit file and sets variable
! ... stopped_by_user to .true..
!
! ... Uses routine f_wall defined in module mytime, returning time in seconds
! ... since the Epoch ( 00:00:00 1/1/1970 ).
!
!------------------------------------------------------------------------------!
MODULE check_stop
!------------------------------------------------------------------------------!
!
USE kinds
USE mytime, ONLY: f_wall
!
IMPLICIT NONE
!
SAVE
!
REAL(DP) :: max_seconds = 1.E+7_DP
REAL(DP) :: init_second
LOGICAL :: stopped_by_user = .FALSE.
LOGICAL :: tinit = .FALSE.
!
PRIVATE
PUBLIC :: check_stop_init, check_stop_now, max_seconds, stopped_by_user
!
CONTAINS
!
! ... internal procedures
!
!-----------------------------------------------------------------------
SUBROUTINE check_stop_init( max_seconds_ )
!-----------------------------------------------------------------------
!
USE io_global, ONLY : stdout
USE io_files, ONLY : prefix, exit_file
#if defined(__TRAP_SIGUSR1) || defined(__TERMINATE_GRACEFULLY)
USE set_signal, ONLY : signal_trap_init
#endif
!
IMPLICIT NONE
REAL(dp), INTENT(IN), OPTIONAL :: max_seconds_
!
IF ( tinit ) WRITE( UNIT = stdout, &
FMT = '(/,5X,"WARNING: check_stop already initialized")' )
!
! ... the exit_file name is set here
!
IF ( TRIM( prefix ) == ' ' ) THEN
exit_file = 'EXIT'
ELSE
exit_file = TRIM( prefix ) // '.EXIT'
END IF
!
IF ( PRESENT(max_seconds_) ) THEN
max_seconds = max_seconds_
END IF
!
init_second = f_wall()
!
tinit = .TRUE.
!
#if defined(__TRAP_SIGUSR1) || defined(__TERMINATE_GRACEFULLY)
CALL signal_trap_init ( )
#endif
!
RETURN
!
END SUBROUTINE check_stop_init
!
!-----------------------------------------------------------------------
FUNCTION check_stop_now( inunit )
!-----------------------------------------------------------------------
!
USE mp, ONLY : mp_bcast
USE mp_images, ONLY : intra_image_comm
USE io_global, ONLY : ionode, ionode_id, meta_ionode, stdout
USE io_files, ONLY : tmp_dir, exit_file, iunexit
#if defined(__TRAP_SIGUSR1) || defined(__TERMINATE_GRACEFULLY)
USE set_signal, ONLY : signal_detected
#endif
!
IMPLICIT NONE
!
INTEGER, OPTIONAL, INTENT(IN) :: inunit
!
INTEGER :: unit
LOGICAL :: check_stop_now, tex=.false.
LOGICAL :: signaled
REAL(DP) :: seconds
!
IF ( stopped_by_user ) THEN
check_stop_now = .TRUE.
RETURN
END IF
!
IF ( .NOT. tinit ) &
CALL errore( 'check_stop_now', 'check_stop not initialized', 1 )
!
unit = stdout
IF ( PRESENT( inunit ) ) unit = inunit
!
check_stop_now = .FALSE.
!
signaled = .FALSE.
!
IF ( ionode ) THEN
!
! ... Check first if exit file exists in current directory
!
INQUIRE( FILE = TRIM( exit_file ), EXIST = tex )
!
IF ( tex ) THEN
!
check_stop_now = .TRUE.
OPEN( UNIT = iunexit, FILE = TRIM( exit_file ) )
CLOSE( UNIT = iunexit, STATUS = 'DELETE' )
!
ELSE
!
! ... Check if exit file exists in scratch directory
!
INQUIRE( FILE = TRIM(tmp_dir) // TRIM( exit_file ), EXIST = tex )
!
IF ( tex ) THEN
!
check_stop_now = .TRUE.
OPEN( UNIT = iunexit, FILE = TRIM(tmp_dir) // TRIM(exit_file) )
CLOSE( UNIT = iunexit, STATUS = 'DELETE' )
!
ELSE
seconds = f_wall() - init_second
check_stop_now = ( seconds > max_seconds )
END IF
!
END IF
!
END IF
!
#if defined(__TRAP_SIGUSR1) || defined(__TERMINATE_GRACEFULLY)
signaled = signal_detected()
check_stop_now = check_stop_now .OR. signaled
tex = tex .OR. signaled
#endif
!
CALL mp_bcast( check_stop_now, ionode_id, intra_image_comm )
!
IF ( check_stop_now .AND. meta_ionode ) THEN
!
IF ( tex ) THEN
!
WRITE( UNIT = unit, &
FMT = '(/,5X,"Program stopped by user request")' )
!
ELSE
!
WRITE( UNIT = unit, &
FMT = '(/,5X,"Maximum CPU time exceeded")' )
WRITE( UNIT = unit, &
FMT = '(/,5X,"max_seconds = ",F10.2)' ) max_seconds
WRITE( UNIT = unit, &
FMT = '(5X,"elapsed seconds = ",F10.2)' ) seconds
!
END IF
!
END IF
!
stopped_by_user = check_stop_now
!
RETURN
!
END FUNCTION check_stop_now
!
END MODULE check_stop
|