source: trunk/libIGCM/AA_rebuild_fromWorkdir @ 1451

Last change on this file since 1451 was 1448, checked in by jgipsl, 6 years ago

Change in headers at irene : temporary remove option -m and use a workaround given by the TGCC. This change is done to avoid problems with resubmitting from job when submitting the main job from workdir.

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