source: trunk/libIGCM/AA_pack_debug @ 554

Last change on this file since 554 was 554, checked in by sdipsl, 12 years ago
  • Mechanism in place to submit pack jobs.
  • Add a PackFrequency? ; default to RebuildFrequency? if not present in config.card
  • Add coherence checks between PackFrequency? and relevant dependant frequencies
  • pack_restart and pack_debug ready in batch mode. Testing in progress. Submission is still a comment in libIGCM_post
  • Move and generalize create_ts_next_date from AA_create_ts to libIGCM_date. Rename to IGCM_date_DaysInNextPeriod
  • Move and generalyze create_ts_begin_date from AA_create_ts to libIGCM_date. Rename to IGCM_date_DaysInPreviousPeriod
  • Cosmetics
  • Property svn:keywords set to Revision Author Date
File size: 14.3 KB
Line 
1#-Q- cesium #!/bin/ksh
2#-Q- cesium ######################
3#-Q- cesium ## CESIUM   CEA ##
4#-Q- cesium ######################
5#-Q- cesium #MSUB -r PACKDEBUG    # Nom du job               
6#-Q- cesium #MSUB -N 1              # Reservation du noeud
7#-Q- cesium #MSUB -n 1              # Reservation du processus
8#-Q- cesium #MSUB -T 86400          # Limite de temps elapsed du job
9#-Q- cesium #MSUB -E "-j o"
10#-Q- cesium #MSUB -E "-S /bin/ksh"
11#-Q- platine #!/usr/bin/ksh
12#-Q- platine ###################
13#-Q- platine ## PLATINE   CEA ##
14#-Q- platine ###################
15#-Q- platine #BSUB -J PACKDEBUG            # Nom du job
16#-Q- platine #BSUB -N                        # message a la fin du job
17#-Q- platine #BSUB -n 1                      # reservation des processeurs pour le job
18#-Q- platine #BSUB -W 4:00                   # Limite temps
19#-Q- platine #BSUB -q post                   # Passage en queue post
20#-Q- platine #BSUB -L /bin/ksh
21#-Q- sx8brodie #!/bin/ksh
22#-Q- sx8brodie #######################
23#-Q- sx8brodie ## SX8BRODIE   IDRIS ##
24#-Q- sx8brodie #######################
25#-Q- sx8brodie # Temps Elapsed max. d'une requete hh:mm:ss
26#-Q- sx8brodie # @ wall_clock_limit = 10:00:00
27#-Q- sx8brodie # Nom du travail LoadLeveler
28#-Q- sx8brodie # @ job_name   = PACKDEBUG
29#-Q- sx8brodie # Fichier de sortie standard du travail       
30#-Q- sx8brodie # @ output     = $(job_name).$(jobid)
31#-Q- sx8brodie # Fichier de sortie d'erreur du travail
32#-Q- sx8brodie # @ error      =  $(job_name).$(jobid)
33#-Q- sx8brodie # pour recevoir un mail en cas de depassement du temps Elapsed (ou autre pb.)
34#-Q- sx8brodie # @ notification = error
35#-Q- sx8brodie # @ environment  = $DEBUG_debug ; $MODIPSL ; $libIGCM ; $libIGCM_SX ; $SUBMIT_DIR ; $DateBegin ; $DateEnd ; $PeriodPack ; $StandAlone ; $MASTER
36#-Q- sx8brodie # @ queue
37#-Q- aix6 #!/bin/ksh
38#-Q- aix6 #######################
39#-Q- aix6 ##   VARGAS   IDRIS  ##
40#-Q- aix6 #######################
41#-Q- aix6 # Temps Elapsed max. d'une requete hh:mm:ss
42#-Q- aix6 # @ wall_clock_limit = 10:00:00
43#-Q- aix6 # Nom du travail LoadLeveler
44#-Q- aix6 # @ job_name   = PACKDEBUG
45#-Q- aix6 # Fichier de sortie standard du travail
46#-Q- aix6 # @ output     = $(job_name).$(jobid)
47#-Q- aix6 # Fichier de sortie d'erreur du travail
48#-Q- aix6 # @ error      =  $(job_name).$(jobid)
49#-Q- aix6 # pour recevoir un mail en cas de depassement du temps Elapsed (ou autre pb.)
50#-Q- aix6 # @ notification = error
51#-Q- aix6 # @ environment  = $DEBUG_debug ; $MODIPSL ; $libIGCM ; $libIGCM_SX ; $SUBMIT_DIR ; $DateBegin ; $DateEnd ; $PeriodPack ; $StandAlone ; $MASTER
52#-Q- aix6 # @ queue
53#-Q- ulam #!/bin/ksh
54#-Q- ulam #######################
55#-Q- ulam ##   VARGAS   IDRIS  ##
56#-Q- ulam #######################
57#-Q- ulam # Temps Elapsed max. d'une requete hh:mm:ss
58#-Q- ulam # @ wall_clock_limit = 10:00:00
59#-Q- ulam # Nom du travail LoadLeveler
60#-Q- ulam # @ job_name   = PACKDEBUG
61#-Q- ulam # Fichier de sortie standard du travail
62#-Q- ulam # @ output     = $(job_name).$(jobid)
63#-Q- ulam # Fichier de sortie d'erreur du travail
64#-Q- ulam # @ error      =  $(job_name).$(jobid)
65#-Q- ulam # pour recevoir un mail en cas de depassement du temps Elapsed (ou autre pb.)
66#-Q- ulam # @ notification = error
67#-Q- ulam # @ environment  = $DEBUG_debug ; $MODIPSL ; $libIGCM ; $libIGCM_SX ; $SUBMIT_DIR ; $DateBegin ; $DateEnd ; $PeriodPack ; $StandAlone ; $MASTER
68#-Q- ulam # @ queue
69#-Q- sx8mercure #!/bin/ksh
70#-Q- sx8mercure ######################
71#-Q- sx8mercure ## SX8MERCURE   CEA ##
72#-Q- sx8mercure ######################
73#-Q- sx8mercure #PBS -N PACKDEBUG          # Nom du job
74#-Q- sx8mercure #PBS -j o                    # regroupement des stdout et stderr
75#-Q- sx8mercure #PBS -S /usr/bin/ksh         # shell de soumission
76#-Q- sx8mercure #PBS -l memsz_job=1gb        # Limite memoire a 1 Go
77#-Q- sx8mercure #PBS -l cputim_job=24:00:00  # Limite temps a 1 heures
78#-Q- sx8mercure #PBS -q scalaire
79#-Q- sx9mercure #!/bin/ksh
80#-Q- sx9mercure ######################
81#-Q- sx9mercure ## CESIUM   CEA ##
82#-Q- sx9mercure ######################
83#-Q- sx9mercure #MSUB -r PACKDEBUG    # Nom du job               
84#-Q- sx9mercure #MSUB -N 1              # Reservation du noeud
85#-Q- sx9mercure #MSUB -n 1              # Reservation du processus
86#-Q- sx9mercure #MSUB -T 86400          # Limite de temps elapsed du job
87#-Q- sx9mercure #MSUB -E "-j o"
88#-Q- sx9mercure #MSUB -E "-S /bin/ksh"
89#-Q- titane #!/bin/ksh
90#-Q- titane ######################
91#-Q- titane ## TITANE   CEA     ##
92#-Q- titane ######################
93#-Q- titane #MSUB -r PACKDEBUG    # Nom du job               
94#-Q- titane #MSUB -eo
95#-Q- titane #MSUB -n 1              # Reservation du processus
96#-Q- titane #MSUB -T 86400          # Limite de temps elapsed du job
97#-Q- titane #MSUB -q mono
98#-Q- lxiv8 ######################
99#-Q- lxiv8 ## OBELIX      LSCE ##
100#-Q- lxiv8 ######################
101#-Q- lxiv8 #PBS -N PACKDEBUG
102#-Q- lxiv8 #PBS -m a
103#-Q- lxiv8 #PBS -j oe
104#-Q- lxiv8 #PBS -q medium
105#-Q- lxiv8 #PBS -o PACKDEBUG.$$
106#-Q- lxiv8 #PBS -S /bin/ksh
107#-Q- default #!/bin/ksh
108#-Q- default ##################
109#-Q- default ## DEFAULT HOST ##
110#-Q- default ##################
111
112#**************************************************************
113# Author: Sebastien Denvil
114# Contact: Sebastien.Denvil__at__ipsl.jussieu.fr
115# $Revision::                                          $ Revision of last commit
116# $Author::                                            $ Author of last commit
117# $Date::                                              $ Date of last commit
118# IPSL (2006)
119#  This software is governed by the CeCILL licence see libIGCM/libIGCM_CeCILL.LIC
120#
121#**************************************************************
122
123#set -eu
124#set -vx
125
126date
127
128########################################################################
129
130#D- Flag to determine if this job in a standalone mode
131#D- Default : value from AA_job if any
132StandAlone=${StandAlone:=true}
133
134#D- Path to libIGCM
135#D- Default : value from AA_job if any
136# WARNING For StandAlone use : To run this script on some machine (ulam and cesium)
137# WARNING you must check MirrorlibIGCM variable in sys library.
138# WARNING If this variable is true, you must use libIGCM_POST path instead
139# WARNING of your running libIGCM directory.
140libIGCM=${libIGCM:=::modipsl::/libIGCM}
141
142#-D- $hostname of the MASTER job when SUBMIT_DIR is not visible on postprocessing computer.
143MASTER=${MASTER:=mercure|titane|brodie|vargas}
144
145#D- Flag to determine begin date for restart pack
146#D- Default : value from AA_job if any
147DateBegin=${DateBegin:=20000101)
148
149#D- Flag to determine end date for restart pack
150#D- Default : value from AA_job if any
151DateEnd=${DateEnd:=20691231}
152
153#D- Flag to determine pack period
154#D- Default : value from AA_job if any
155PeriodPack=${PeriodPack:=10Y}
156
157#D- Uncomment to run interactively
158#D- For testing purpose, will be remove
159#SUBMIT_DIR=${PWD}
160#RUN_DIR_PATH=${SCRATCHDIR}/Pack_Test
161
162#D- Increased verbosity (1, 2, 3)
163#D- Default : value from AA_job if any
164Verbosity=${Verbosity:=3}
165
166#D- Low level debug : to bypass lib test checks and stack construction
167#D- Default : value from AA_job if any
168DEBUG_debug=${DEBUG_debug:=false}
169
170#D- Keep following comments for now. Will be remove.
171
172#on veut archiver les fichiers restart
173#Dans le cadre du demenagement ils seront renommes
174#ATM/Restart/****.nc
175#OCE/Restart/****.nc
176#...
177#sous la forme
178#RESTART/ATM_****.nc
179#RESTART/OCE_****.nc
180#Attention de bien conserver les dates d'origines
181#
182#Dans le cadre de la production nouvelle chaine
183#ils auront directement le bon nom
184#
185#On veut egalement que l'archive soit par periode de temps
186# cette periode est definie par la taille du pack donc connue
187# en entree du script (1M, 1Y, 5Y, 10Y etc...)
188#
189# $1= PATH/config_card d'une simulation avec
190# TagName/JobName/ExperimentName/SpaceName/DateBegin/DateEnd/PATH_SIMUL
191# $2=PeriodPack en M/m ou Y/y
192
193########################################################################
194
195. ${libIGCM}/libIGCM_debug/libIGCM_debug.ksh
196( ${DEBUG_debug} ) && IGCM_debug_Check
197. ${libIGCM}/libIGCM_card/libIGCM_card.ksh
198( ${DEBUG_debug} ) && IGCM_card_Check
199. ${libIGCM}/libIGCM_date/libIGCM_date.ksh
200( ${DEBUG_debug} ) && IGCM_date_Check
201#-------
202. ${libIGCM}/libIGCM_sys/libIGCM_sys.ksh
203. ${libIGCM}/libIGCM_post/libIGCM_post.ksh
204
205########################################################################
206
207#set -vx
208
209RUN_DIR=${RUN_DIR_PATH}
210IGCM_sys_MkdirWork ${RUN_DIR}
211IGCM_sys_Cd ${RUN_DIR}
212
213# ------------------------------------------------------------------
214# Test if all was right before proceeding further
215# ------------------------------------------------------------------
216IGCM_debug_Verif_Exit_Post
217
218if [ ${StandAlone} = true ] ; then
219    CARD_DIR=${SUBMIT_DIR}
220else
221    CARD_DIR=${RUN_DIR_PATH}/$( basename ${SUBMIT_DIR} )
222    IGCM_sys_Get_Master ${SUBMIT_DIR} ${RUN_DIR_PATH}
223fi
224
225#
226# First of all
227#
228#### 0- lecture de config.card
229#### on veut les renseignements suivants :
230#### JobName, PATH_SIMUL, DateBegin et DateEnd
231
232IGCM_card_DefineArrayFromSection     ${CARD_DIR}/config.card UserChoices
233typeset option
234for option in ${config_UserChoices[*]} ; do
235  IGCM_card_DefineVariableFromOption ${CARD_DIR}/config.card UserChoices ${option}
236done
237#
238echo
239IGCM_debug_Print 1 "DefineArrayFromOption  : config_UserChoices"
240IGCM_debug_PrintVariables 3 config_UserChoices_JobName
241IGCM_debug_PrintVariables 3 config_UserChoices_LongName
242IGCM_debug_PrintVariables 3 config_UserChoices_TagName
243IGCM_debug_PrintVariables 3 config_UserChoices_SpaceName
244IGCM_debug_PrintVariables 3 config_UserChoices_ExperimentName
245IGCM_debug_PrintVariables 3 config_UserChoices_CalendarType
246IGCM_debug_PrintVariables 3 config_UserChoices_DateBegin
247IGCM_debug_PrintVariables 3 config_UserChoices_DateEnd
248IGCM_debug_PrintVariables 3 config_UserChoices_PeriodLength
249echo
250
251#====================================================
252#R_SAVE : Job output storage directory
253#R_BUFR : Job output buffered directory
254
255if ( [ ! X${config_UserChoices_SpaceName} = X ] && [ ! X${config_UserChoices_ExperimentName} = X ] ) ; then
256  FreeName=$( echo ${config_UserChoices_JobName} | sed 's/.*_//' )
257  R_SAVE=${R_OUT}/${config_UserChoices_TagName}/${config_UserChoices_SpaceName}/${config_UserChoices_ExperimentName}/${FreeName}
258  R_BUFR=${R_BUF}/${config_UserChoices_TagName}/${config_UserChoices_SpaceName}/${config_UserChoices_ExperimentName}/${FreeName}
259else
260  R_SAVE=${R_OUT}/${config_UserChoices_TagName}/${config_UserChoices_JobName}
261  R_BUFR=${R_BUF}/${config_UserChoices_TagName}/${config_UserChoices_JobName}
262fi
263IGCM_sys_TestDirArchive ${R_SAVE}
264[ $? != 0 ] && IGCM_debug_Exit "IGCM_sys_TestDirArchive"
265
266#### Preparation de l'environnement
267# repertoire dans lequel seront crees les archives
268STORE_DEBUG=${R_SAVE}/DEBUG
269IGCM_sys_MkdirArchive ${STORE_DEBUG}
270
271#STORE_DEBUG=/scratch/cont003/p86denv/Pack_Test/DEBUG
272#mkdir -p ${STORE_DEBUG}
273
274# Switch to script variables meaning (try to be compatible with ipsl_pack TGCC moving procedure)
275JobName=${config_UserChoices_JobName}
276PATH_SIMUL=${R_BUFR}
277echo $JobName $PATH_SIMUL $DateBegin $DateEnd
278
279#### 1- renommer les fichiers ######
280#cd ${STORE_DEBUG}
281#rm -rf *
282
283# On les copie sur le scratchdir en changeant le nom et conservant la date
284# Clear txt file lists
285rm -f ${RUN_DIR}/liste_debug_files.txt
286rm -f ${RUN_DIR}/new_liste_debug_files.txt
287rm -f ${RUN_DIR}/liste_pack_*.txt
288
289# Create sorted debug list to work with
290find ${PATH_SIMUL}/*/Debug -type f | sort >> ${RUN_DIR}/liste_debug_files.txt
291
292###cat  ${RUN_DIR}/liste_debug_files.txt | xargs dmget
293
294# Rename debug files we will work with using symlinks
295#gawk -F/ '{dest_name=$(NF-2)("_") $(NF); system("cp --preserve " $0 " "dest_name)}' ${RUN_DIR}/liste_debug_files.txt
296gawk -F/ '{dest_name=$(NF-2)("_") $(NF); system("ln -s " $0 " "dest_name)}' ${RUN_DIR}/liste_debug_files.txt
297
298# List renamed debug files
299ls -l ${RUN_DIR}/???_*${JobName}* > ${RUN_DIR}/new_liste_debug_files.txt
300
301### 2- creer les listes de fichiers par periode ####
302### 2.1- dechiffrer PeriodPack et le separer en year et month ###
303case ${PeriodPack} in
304*Y|*y)
305  periodpackinyear=$( echo ${PeriodPack} | sed -e 's/[yY]//' ) 
306  periodpackinmonth=0
307  ;;
308
309*M|*m)
310  periodpackinyear=0
311  periodpackinmonth=$( echo ${PeriodPack} | sed -e 's/[mM]//' ) 
312  ;;
313
314*)
315  echo "PeriodPack doit etre en mois ou annees"
316  IGCM_debug_Exit "period pack unit"
317  ;;
318
319esac
320
321### 2.2- extraire l'annee et le mois de DateBegin ###
322date_begin=${DateBegin}
323date_end=${DateEnd}
324
325IGCM_date_GetYearMonth ${date_begin} year_begin month_begin
326IGCM_date_GetYearMonth ${date_end}   year_end   month_end
327
328# ------------------------------------------------------------------
329# Test if all was right before proceeding further
330# ------------------------------------------------------------------
331IGCM_debug_Verif_Exit_Post
332
333### 2.3- creation des listes ###
334date_begin_pack=${date_begin}
335month_begin_pack=${month_begin}
336year_begin_pack=${year_begin}
337
338date_end_simulation=${date_end}
339
340number_pack=1
341
342IGCM_debug_PrintVariables 3 date_begin_pack
343IGCM_debug_PrintVariables 3 date_end_simulation
344
345while [ ${date_begin_pack} -le ${date_end_simulation} ] ; do
346
347  IGCM_debug_PrintVariables 3 number_pack
348
349  (( month_end_pack = month_begin_pack + periodpackinmonth ))
350  (( add_year = ${month_end_pack} / 13 ))
351  if [ ${month_end_pack} -ge 13 ] ; then
352    (( month_end_pack = ${month_end_pack} % 12 ))
353  fi
354
355  (( year_end_pack = year_begin_pack + periodpackinyear + add_year ))
356
357  date_end_pack=${year_end_pack}$( printf "%02i\n" ${month_end_pack} )01
358
359  for file in $( gawk '{print $9}' ${RUN_DIR}/new_liste_debug_files.txt ); do
360    extract_date_file=$( echo ${file}  | sed -e "s/.*${JobName}_[0-9]*_//" )
361    date_file=$( echo ${extract_date_file} | sed 's/\([0-9]\{8\}\)_.*$/\1/g' )
362#   echo pack n°${number_pack}  ${date_file} ${date_begin_pack} ${date_end_pack}
363    if [ ${date_file} -lt ${date_end_pack} ] && [ ${date_file} -ge ${date_begin_pack} ] ; then
364        echo $( basename ${file} ) >> ${RUN_DIR}/liste_pack_${number_pack}.txt
365#    Will not work. Need to find a better ordering.
366#    elif [ ${date_file} -ge ${date_end_pack} ] ; then
367#      break
368    fi
369  done
370
371  month_begin_pack=${month_end_pack}
372  year_begin_pack=${year_end_pack}
373  date_begin_pack=${year_begin_pack}$( printf "%02i\n" ${month_begin_pack} )01
374
375  # Here we create tar files directly in $STORE. Avoid to create then to copy.
376  tar -cvf ${STORE_DEBUG}/${JobName}_${year_begin_pack}_${year_end_pack}_debug.tar --dereference --files-from ${RUN_DIR}/liste_pack_${number_pack}.txt
377  cat  ${RUN_DIR}/liste_pack_${number_pack}.txt | xargs rm
378  mv ${RUN_DIR}/liste_pack_${number_pack}.txt ${STORE_DEBUG}
379
380  (( number_pack = number_pack + 1 ))
381
382done
Note: See TracBrowser for help on using the repository browser.