source: trunk/libIGCM/AA_rebuild_fromWorkdir @ 1438

Last change on this file since 1438 was 1437, checked in by jgipsl, 6 years ago

For Irene:

  • ins_job now ask for project id. gch0316 for the grand challenge is the default.
  • headers for more post-processing jobs
  • Property licence set to
    The following licence information concerns ONLY the libIGCM tools
    ==================================================================

    Copyright © Centre National de la Recherche Scientifique CNRS
    Commissariat à l'Énergie Atomique CEA

    libIGCM : Library for Portable Models Computation of IGCM Group.

    IGCM Group is the french IPSL Global Climate Model Group.

    This library is a set of shell scripts and functions whose purpose is
    the management of the initialization, the launch, the transfer of
    output files, the post-processing and the monitoring of datas produce
    by any numerical program on any plateforme.

    This software is governed by the CeCILL license under French law and
    abiding by the rules of distribution of free software. You can use,
    modify and/ or redistribute the software under the terms of the CeCILL
    license as circulated by CEA, CNRS and INRIA at the following URL
    "http://www.cecill.info".

    As a counterpart to the access to the source code and rights to copy,
    modify and redistribute granted by the license, users are provided only
    with a limited warranty and the software's author, the holder of the
    economic rights, and the successive licensors have only limited
    liability.

    In this respect, the user's attention is drawn to the risks associated
    with loading, using, modifying and/or developing or reproducing the
    software by the user in light of its specific status of free software,
    that may mean that it is complicated to manipulate, and that also
    therefore means that it is reserved for developers and experienced
    professionals having in-depth computer knowledge. Users are therefore
    encouraged to load and test the software's suitability as regards their
    requirements in conditions enabling the security of their systems and/or
    data to be ensured and, more generally, to use and operate it in the
    same conditions as regards security.

    The fact that you are presently reading this means that you have had
    knowledge of the CeCILL license and that you accept its terms.
  • Property svn:keywords set to Revision Author Date
File size: 8.8 KB
Line 
1#-Q- curie ######################
2#-Q- curie ## CURIE   TGCC/CEA ##
3#-Q- curie ######################
4#-Q- curie #MSUB -r REBUILDWRK     # Nom du job
5#-Q- curie #MSUB -eo
6#-Q- curie #MSUB -n 1              # Reservation du processus
7#-Q- curie #MSUB -T 36000          # Limite de temps elapsed du job
8#-Q- curie #MSUB -q standard       # xlarge:fat nodes standard:thin nodes
9#-Q- curie #MSUB -x                # exclusive node (needed to use high speed disk below)
10#-Q- curie #MSUB -Q normal
11#-Q- curie #MSUB -A ::default_project::
12#-Q- curie RUN_DIR_PATH=/tmp/REBUILD_DIR_MR_$$     # RAM high speed disk partition ; 250GB/node. Along with -q standard
13#-Q- curie #RUN_DIR_PATH=/dev/shm/REBUILD_DIR_MR_$$ # SSD high speed disk partition ; 64GB/node.  Along with -q xlarge
14#-Q- curie set +x
15#-Q- irene ######################
16#-Q- irene ## IRENE   TGCC/CEA ##
17#-Q- irene ######################
18#-Q- irene #MSUB -r REBUILDWRK    # Job name
19#-Q- irene #MSUB -eo
20#-Q- irene #MSUB -n 1
21#-Q- irene #MSUB -T 36000         # Maximum elapsed time
22#-Q- irene #MSUB -q skylake
23#-Q- irene #MSUB -c 4
24#-Q- irene #MSUB -Q normal
25#-Q- irene #MSUB -A ::default_project::
26#-Q- irene #MSUB -m store,work,scratch
27#-Q- irene set +x
28#-Q- ada #!/bin/ksh
29#-Q- ada #######################
30#-Q- ada ## ADA         IDRIS ##
31#-Q- ada #######################
32#-Q- ada # @ job_type = mpich
33#-Q- ada # @ requirements = (Feature == "prepost")
34#-Q- ada # Temps Elapsed max. d'une requete hh:mm:ss
35#-Q- ada # @ wall_clock_limit = 10:00:00
36#-Q- ada # Nom du travail LoadLeveler
37#-Q- ada # @ job_name   = REBUILDWRK
38#-Q- ada # Fichier de sortie standard du travail
39#-Q- ada # @ output     = $(job_name).$(jobid)
40#-Q- ada # Fichier de sortie d'erreur du travail
41#-Q- ada # @ error      =  $(job_name).$(jobid)
42#-Q- ada # pour recevoir un mail en cas de depassement du temps Elapsed (ou autre pb.)
43#-Q- ada # @ notification = error
44#-Q- ada # @ environment  = $DEBUG_debug ; $BigBrother ; $postProcessingStopLevel ; $MODIPSL ; $libIGCM ; $libIGCM_SX ; $SUBMIT_DIR ; $REBUILD_DIR ; $POST_DIR ; $Script_Post_Output ; $DateBegin ; $PeriodDateBegin ; $PeriodDateEnd ; $NbRebuildDir ; $StandAlone ; $RESOL_ATM ; $RESOL_OCE ; $RESOL_ICE ; $RESOL_MBG ; $RESOL_SRF ; $RESOL_SBG ; $MASTER ; wall_clock_limit=$(wall_clock_limit)
45#-Q- ada # @ queue
46#-Q- lxiv8 ######################
47#-Q- lxiv8 ## OBELIX      LSCE ##
48#-Q- lxiv8 ######################
49#-Q- lxiv8 #PBS -N REBUILDWRK
50#-Q- lxiv8 #PBS -m a
51#-Q- lxiv8 #PBS -j oe
52#-Q- lxiv8 #PBS -q medium
53#-Q- lxiv8 #PBS -o REBUILDWRK.$$
54#-Q- lxiv8 #PBS -S /bin/ksh
55#-Q- ifort_CICLAD ######################
56#-Q- ifort_CICLAD ##   CICLAD    IPSL ##
57#-Q- ifort_CICLAD ######################
58#-Q- ifort_CICLAD #PBS -N REBUILDWRK
59#-Q- ifort_CICLAD #PBS -m a
60#-Q- ifort_CICLAD #PBS -j oe
61#-Q- ifort_CICLAD #PBS -q std
62#-Q- ifort_CICLAD #PBS -S /bin/ksh
63#-Q- default #!/bin/ksh
64#-Q- default ##################
65#-Q- default ## DEFAULT HOST ##
66#-Q- default ##################
67
68#**************************************************************
69# Author: Sebastien Denvil
70# Contact: Sebastien.Denvil__at__ipsl.jussieu.fr
71# $Revision::                                          $ Revision of last commit
72# $Author::                                            $ Author of last commit
73# $Date::                                              $ Date of last commit
74# IPSL (2006)
75#  This software is governed by the CeCILL licence see libIGCM/libIGCM_CeCILL.LIC
76#
77#**************************************************************
78
79#set -eu
80#set -vx
81
82date
83
84#-Q- ada export OMP_NUM_THREADS=1
85
86#D- Task type DO NOT CHANGE (computing, post-processing or checking)
87TaskType=post-processing
88
89########################################################################
90
91#D- Flag to determine if this job in a standalone mode
92#D- Default : value from AA_job if any
93StandAlone=${StandAlone:=true}
94
95#D- Path to libIGCM
96#D- Default : value from AA_job if any
97# WARNING For StandAlone use : To run this script on some machine (ulam and cesium)
98# WARNING you must check MirrorlibIGCM variable in sys library.
99# WARNING If this variable is true, you must use libIGCM_POST path instead
100# WARNING of your running libIGCM directory.
101libIGCM=${libIGCM:=::modipsl::/libIGCM}
102
103#-D- $hostname of the MASTER job when SUBMIT_DIR is not visible on postprocessing computer.
104MASTER=${MASTER:=ada|curie}
105
106#D- Directory where files we need to rebuild are store
107#D- Default : value from AA_job if any
108#D- REBUILD_DIR=${BIGDIR}/REBUILD/TagName/JobName/
109#D- example : /scratch/cont003/p86denv/REBUILD/IPSLCM5/SCAL-NEW
110REBUILD_DIR=${REBUILD_DIR:=/path/to/your/TMP/REBUILD/FILES}
111
112#D- How many directory to rebuild we have to consider
113#D- Default : value from AA_job if any
114NbRebuildDir=${NbRebuildDir:=1000}
115
116#D- Suffix date we will use to determine which directory to rebuild
117#D- We will rebuild NbRebuildDir before and including PeriodDateBegin
118#D- Default : value from AA_job if any
119LastPeriodForRebuild=${LastPeriodForRebuild:=${PeriodDateBegin:=18901201}}
120
121#D- Flag to determine atlas job's output directory
122#D- Default : value from libIGCM_post.ksh if any
123POST_DIR=${POST_DIR:=${PBS_O_WORKDIR}}
124
125#-D- libIGCM_SX contains libIGCM on Master computer. Required on some center. Always OK.
126libIGCM_SX=${libIGCM_SX:=::modipsl::/libIGCM}
127
128#D- Increased verbosity (1, 2, 3)
129#D- Default : value from AA_job if any
130Verbosity=${Verbosity:=3}
131
132#D- Low level debug : to bypass lib test checks and stack construction
133#D- Default : value from AA_job if any
134DEBUG_debug=${DEBUG_debug:=false}
135
136#D- TEMPORARY Flag to determine atmospheric resolution
137#D- Default : value from atmospheric driver if any
138RESOL_ATM=${RESOL_ATM:=ALL}
139
140#D- TEMPORARY Flag to determine ocean resolution
141#D- Default : value from ocean driver if any
142RESOL_OCE=${RESOL_OCE:=ORCA2}
143
144#D- TEMPORARY Flag to determine ice resolution
145#D- Default : value from ice driver if any
146RESOL_ICE=${RESOL_OCE:=ORCA2}
147
148#D- TEMPORARY Flag to determine biogeochemistry resolution
149#D- Default : value from ice driver if any
150RESOL_MBG=${RESOL_OCE:=ORCA2}
151
152#D- Flag to determine surface resolution
153#D- Default : value from surface driver if any
154RESOL_SRF=ALL
155
156#D- Flag to determine surface resolution
157#D- Default : value from surface driver if any
158RESOL_SBG=ALL
159
160########################################################################
161
162. ${libIGCM}/libIGCM_debug/libIGCM_debug.ksh
163. ${libIGCM}/libIGCM_card/libIGCM_card.ksh
164. ${libIGCM}/libIGCM_date/libIGCM_date.ksh
165#-------
166. ${libIGCM}/libIGCM_sys/libIGCM_sys.ksh
167. ${libIGCM}/libIGCM_config/libIGCM_config.ksh
168. ${libIGCM}/libIGCM_post/libIGCM_post.ksh
169#-------
170RUN_DIR=${RUN_DIR_PATH}
171IGCM_sys_MkdirWork ${RUN_DIR}
172IGCM_sys_Cd ${RUN_DIR}
173#-------
174( ${DEBUG_debug} ) && IGCM_debug_Check
175( ${DEBUG_debug} ) && IGCM_card_Check
176( ${DEBUG_debug} ) && IGCM_date_Check
177
178########################################################################
179
180#set -vx
181
182# ------------------------------------------------------------------
183# Test if all was right before proceeding further
184# ------------------------------------------------------------------
185IGCM_debug_Verif_Exit
186
187if [ ${StandAlone} = true ] ; then
188  CARD_DIR=${SUBMIT_DIR}
189else
190  CARD_DIR=${RUN_DIR}
191  IGCM_sys_Get_Master ${SUBMIT_DIR}/config.card ${RUN_DIR_PATH}
192  IGCM_sys_Get_Master ${SUBMIT_DIR}/run.card    ${RUN_DIR_PATH}
193  IGCM_sys_Get_Master ${SUBMIT_DIR}/COMP        ${RUN_DIR_PATH}
194  IGCM_sys_Get_Master ${SUBMIT_DIR}/POST        ${RUN_DIR_PATH}
195fi
196
197#==================================
198# First of all
199#
200# Read libIGCM compatibility version in config.card
201# Read UserChoices section
202# Read Ensemble section
203# Read Post section
204# Define all netcdf output directories
205#==================================
206IGCM_config_CommonConfiguration ${CARD_DIR}/config.card
207
208# ------------------------------------------------------------------
209# Activate BigBrother so as to supervise this job
210# ------------------------------------------------------------------
211IGCM_debug_BigBro_Initialize
212
213# Directory list to work with
214ListAllRebuildDir=$( IGCM_sys_RshMaster ls -d ${REBUILD_DIR}/REBUILD_* | grep -B $(( ${NbRebuildDir} -1 )) ${LastPeriodForRebuild} )
215
216for directory in ${ListAllRebuildDir} ; do
217  #
218  IGCM_sys_Get_Master ${directory} ${RUN_DIR}
219  #
220  IGCM_sys_Cd ${RUN_DIR}/$( basename ${directory} )
221
222  # --------------------------------------------------------------------
223  # Source function include in the REBUILD ksh and rebuild
224  # --------------------------------------------------------------------
225  . ${RUN_DIR}/$( basename ${directory} )/rebuild.ksh
226  IGCM_FlushRebuild
227  #
228  IGCM_sys_Cd ${RUN_DIR}
229  # Clean Up
230  # local clean up
231  IGCM_sys_Rm -rf $( basename ${directory} )
232  # remote clean up
233  IGCM_sys_RshMaster rm -rf ${directory}
234done
235
236# Clean RUN_DIR_PATH (necessary for cesium and titane only)
237IGCM_sys_RmRunDir -Rf ${RUN_DIR_PATH}
238
239# ------------------------------------------------------------------
240# Finalize BigBrother to inform that the jobs end
241# ------------------------------------------------------------------
242IGCM_debug_BigBro_Finalize
243
244date
Note: See TracBrowser for help on using the repository browser.