/[MITgcm]/MITgcm_contrib/test_scripts/svante/test_svante_ifc_adm
ViewVC logotype

Contents of /MITgcm_contrib/test_scripts/svante/test_svante_ifc_adm

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.8 - (show annotations) (download)
Mon Nov 6 13:35:01 2023 UTC (20 months, 2 weeks ago) by jmc
Branch: MAIN
CVS Tags: HEAD
Changes since 1.7: +2 -1 lines
Add new script to make tar file of output-dir results and
save this backup file after testreport and restart test.

1 #!/bin/bash
2 #SBATCH -J ifcAdm_tst
3 #SBATCH -p edr
4 #SBATCH -t 23:30:00
5 #SBATCH --mem-per-cpu 4000
6 #SBATCH -N 1
7 #SBATCH --tasks-per-node 6
8 # #SBATCH -x curly,larry,moe,shemp
9 #SBATCH -e /home/jm_c/test_svante/output/ifcAdm_tst.stderr
10 #SBATCH -o /home/jm_c/test_svante/output/ifcAdm_tst.stdout
11 #SBATCH --no-requeue
12
13 # $Header: /u/gcmpack/MITgcm_contrib/test_scripts/svante/test_svante_ifc_adm,v 1.7 2023/10/19 14:38:38 jmc Exp $
14 # $Name: $
15
16 if test -f /etc/profile.d/modules.sh ; then . /etc/profile.d/modules.sh ; fi
17 if test -f /etc/profile.d/zz_modules.sh ; then . /etc/profile.d/zz_modules.sh ; fi
18 # Note: added "ulimit -s unlimited" in file "~/.bashrc"
19 # to pass big test (the 2 fizhi-cs-* test & adjoint tests) with MPI
20
21 umask 0022
22 #- to get case insensitive "ls" (and order of tested experiments)
23 export LC_ALL="en_US.UTF-8"
24 echo " running on: "`hostname`
25 headNode='svante-login'
26
27 dNam='svante'
28 HERE="$HOME/test_${dNam}"
29 OUTP="$HERE/output"; SavD="$HERE/send"
30 SEND="ssh $headNode $SavD/mpack"
31 #TST_DISK="/net/fs09/d1/jm_c"
32 TST_DISK="/scratch/jm_c"
33 #TST_DIR="$TST_DISK/test_${dNam}"
34 TST_DIR="test_${dNam}"
35 #- where local copy of code is (need to be consistent with "test_submit_svante"):
36 #srcDIR='.'
37 srcDIR=$HERE
38 srcCode="MITgcm_today"
39
40 #- following lines are not used here:
41 cmdCVS='cvs -d :pserver:cvsanon@mitgcm.org:/u/gcmpack -q'
42 #- which GitHub repository to use and how to access it:
43 git_repo='MITgcm'; git_code='MITgcm' ; git_other='verification_other'
44 #git_repo='altMITgcm'; #git_code='MITgcm66h'
45 #--
46 git_repo="https://github.com/$git_repo"
47 #git_repo="git://github.com/$git_repo"
48 #git_repo="git@github.com:$git_repo"
49
50 dblTr=0 ; typ='' ; addExp='' ; skipExp=''
51 sfx='ifcAdm'; typ='-adm' ; dblTr=1
52 module add intel/2021.4.0
53 module add openmpi
54 #module add netcdf
55 OPTFILE="../tools/build_options/linux_amd64_ifort"
56 export GENERIC='on' # <-- to prevent the use of "-xHost" option
57 #- needed for DIVA with MPI:
58 export MPI_INC_DIR=$INC_MPI
59 options="$typ -ncad -MPI 6"
60 #- need this to get "staf" & "do_make_syntax.sh":
61 export PATH="$PATH:$HOME/bin"
62
63 gcmDIR="MITgcm_$sfx"
64 dAlt=`date +%d` ; dAlt=`expr $dAlt % 3`
65 if [ $dAlt -eq 2 ] ; then options="$options -ur4" ; fi
66 if [ $dAlt -eq 1 ] ; then options="$options -fast"
67 else options="$options -devel" ; fi
68 if test "x$skipExp" != x ; then skipExp=`echo $skipExp | sed 's/^ *//'` ; fi
69
70 checkOut=2 ; #options="$options -do"
71 #options="$options -nc" ; checkOut=1 ; dblTr=0
72 #options="$options -q" ; checkOut=0 ; dblTr=0
73
74 echo "cd $TST_DISK ; pwd (x1)"
75 cd $TST_DISK
76 pwd ; ls -l
77 if test ! -d $TST_DIR ; then sleep 5 ; pwd ; ls -l ; fi
78 if test ! -d $TST_DIR ; then
79 echo -n "Creating a working dir: $TST_DIR ..."
80 mkdir $TST_DIR
81 retVal=$?
82 if test "x$retVal" != x0 ; then
83 if test ! -d $TST_DIR ; then
84 echo " FAIL"
85 echo "Error: unable to make dir: $TST_DIR (err=$retVal ) from $TST_DISK --> Exit"
86 exit 1
87 else echo " FAIL but dir now exists ! -> continue" ; fi
88 else echo " done" ; fi
89 fi
90 echo "start from DIR='$TST_DISK/$TST_DIR' at: "`date`
91 cd $TST_DIR
92 pwd
93
94 NSLOTS=$SLURM_NTASKS
95 THEDATE=`date`
96 echo '********************************************************************************'
97 echo 'Start job '$THEDATE
98 echo 'NSLOTS = '$NSLOTS
99 echo '======= NODELIST ==============================================================='
100 echo $SLURM_NODELIST
101 cat /etc/redhat-release
102 echo '======= env ===================================================================='
103 env | grep SLURM
104 echo '======= modules ================================================================'
105 module list 2>&1
106 echo '================================================================================'
107
108 #- check for disk space: relative space (99%) or absolute (10.G):
109 dsp=`df -P . | tail -1 | awk '{print $5}' | sed 's/%$//'`
110 if [ $dsp -gt 99 ] ; then
111 #dsp=`df -P . | tail -1 | awk '{print $4}'`
112 #if [ $dsp -le 100000000 ] ; then
113 echo 'Not enough space on this disk => do not run testreport.'
114 df .
115 exit
116 fi
117
118 if [ $checkOut -eq 1 ] ; then
119 if test ! -e $gcmDIR/.git/config ; then
120 echo "no file: $gcmDIR/.git/config => try to download a fresh clone"
121 checkOut=2
122 fi
123 if test "x$addExp" != x ; then
124 if test ! -e $gcmDIR/$git_other/.git/config ; then
125 echo "no file: $gcmDIR/$git_other/.git/config => try a fresh clone"
126 checkOut=2
127 fi
128 fi
129 fi
130 if [ $checkOut -eq 1 ] ; then
131 echo "cleaning output from $gcmDIR/verification :"
132 #- remove previous output tar files and tar & remove previous output-dir
133 /bin/rm -f $gcmDIR/verification/??_${dNam}-${sfx}_????????_?.tar.gz
134 ( cd $gcmDIR/verification
135 listD=`ls -1 -d ??_${dNam}-${sfx}_????????_? 2> /dev/null`
136 for dd in $listD
137 do
138 if test -d $dd ; then
139 tar -cf ${dd}".tar" $dd > /dev/null 2>&1 && gzip ${dd}".tar" && /bin/rm -rf $dd
140 retVal=$?
141 if test "x$retVal" != x0 ; then
142 echo "ERROR in tar+gzip prev outp-dir: $dd"
143 echo " on '"`hostname`"' (return val=$retVal) but continue"
144 fi
145 fi
146 done )
147 echo "clean testreport output (+ Makefile_syntax files)"
148 # ( cd $gcmDIR/verification ; ../tools/do_tst_2+2 -clean )
149 ( cd $gcmDIR/verification ; ./testreport $typ -clean )
150 ( cd $gcmDIR/verification ; rm -f */build/Makefile_syntax )
151 ( cd $gcmDIR/verification ; rm -f */build/port_rand.i */build/ptracers_set_iolabel.i )
152 if test "x$addExp" != x ; then
153 ( cd $gcmDIR/verification
154 listD=`ls -o | grep '^l' | awk '{print $8}' 2> /dev/null`
155 echo " + remove local links: $listD"
156 /bin/rm -f $listD
157 )
158 fi
159 echo "Update $git_code code in dir $gcmDIR :"
160 ( cd $gcmDIR ; git pull ) 2>&1
161 retVal=$?
162 if test "x$retVal" != x0 ; then
163 echo "git pull on '"`hostname`"' fail (return val=$retVal) => exit"
164 exit
165 fi
166 echo " and checkout master:"
167 ( cd $gcmDIR ; git checkout master -- . ) 2>&1
168 if test "x$addExp" != x ; then
169 echo "Update $git_other code in dir $gcmDIR/$git_other :"
170 ( cd $gcmDIR/$git_other ; git pull ) 2>&1
171 retVal=$?
172 if test "x$retVal" != x0 ; then
173 echo "git pull on '"`hostname`"' fail (return val=$retVal) => exit"
174 exit
175 fi
176 echo " and checkout master:"
177 ( cd $gcmDIR/$git_other ; git checkout master -- . ) 2>&1
178 fi
179 fi
180
181 if [ $checkOut -eq 2 ] ; then
182 if test -e $gcmDIR ; then
183 echo -n "Removing working copy: $gcmDIR ..."
184 rm -rf $gcmDIR
185 echo " done"
186 fi
187 # make a local copy (instead of making a new clone):
188 today=`date +%Y%m%d`
189 nCount=0; updFile="${srcDIR}/updated_code"
190 updDate=0 ; test -f $updFile && updDate=`cat $updFile`
191 while [ $today -gt $updDate ] ; do
192 nCount=`expr $nCount + 1`
193 if [ $nCount -gt 40 ] ; then
194 echo " waiting too long (nCount=$nCount) for updated code"
195 echo " today=$today , updDate=$updDate "
196 ls -l $updFile
197 exit
198 fi
199 sleep 60
200 updDate=0 ; test -f $updFile && updDate=`cat $updFile`
201 done
202 ls -l $updFile
203 echo " waited nCount=$nCount for updated code ($updDate) to copy"
204 if test -d $srcDIR/$srcCode ; then
205 echo -n "Make local copy of dir '$srcDIR/$srcCode' to: $gcmDIR ..."
206 cp -pra $srcDIR/$srcCode $gcmDIR
207 echo " done"
208 else echo " dir: $srcDIR/$srcCode missing => exit" ; exit ; fi
209 fi
210
211 #- change dir to $gcmDIR/verification + add link for additional experiments:
212 if test -e $gcmDIR/verification ; then
213 if [ $checkOut -lt 2 ] ; then
214 echo " dir $gcmDIR/verification exist" ; fi
215 cd $gcmDIR/verification
216 for exp2add in $addExp ; do
217 test -r $exp2add && /bin/rm -rf $exp2add
218 if test -d ../$git_other/$exp2add ; then
219 echo " add $exp2add link from $git_other"
220 ln -s ../$git_other/$exp2add .
221 if test $exp2add = 'global_oce_cs32' ; then
222 echo " link dir 'other_input/core2_cnyf' in here"
223 ( cd ../${git_other}/${exp2add}
224 test -L core2_cnyf && /bin/rm -f core2_cnyf
225 ln -s ../../../other_input/core2_cnyf . )
226 fi
227 if test $exp2add = 'global_oce_llc90' ; then
228 echo " link dir 'other_input/gael_oce_llc90_input' to 'input_fields'"
229 ( cd ../${git_other}/${exp2add}
230 test -L input_fields && /bin/rm -f input_fields
231 ln -s ../../../other_input/gael_oce_llc90_input input_fields
232 echo " link dirs: 'core2_cnyf' & 'global_oce_input_fields/*' in input_verifs"
233 test ! -e input_verifs && mkdir input_verifs
234 ( cd input_verifs ; /bin/rm -f *
235 ln -s ../../../../other_input/core2_cnyf .
236 ln -s ../../../../other_input/global_oce_input_fields/* . )
237 )
238 fi
239 else
240 echo " missing dir: $git_other/$exp2add"
241 continue
242 fi
243 done
244 else
245 echo "no dir: $gcmDIR/verification => exit"
246 exit
247 fi
248
249 if [ $dblTr -eq 1 ] ; then
250 if [ $dAlt -ne 1 ] ; then
251 echo ''
252 #- 0) just make all module header ( *__genmod.mod files) using modified Makefile
253 echo ./testreport $options -of $OPTFILE -skd \'$skipExp\' \
254 -j 4 -repl_mk do_make_syntax.sh -obj -dd
255 ./testreport $options -of $OPTFILE -skd "$skipExp" \
256 -j 4 -repl_mk do_make_syntax.sh -obj -dd 2>&1
257 options="$options -q"
258 fi
259
260 echo ''
261 #- 1) just compile ("-nr"), using "-j 4" to speed up
262 echo ./testreport $options -of $OPTFILE -skd \'$skipExp\' \
263 -j 4 -nr -odir ${dNam}-$sfx
264 ./testreport $options -of $OPTFILE -skd "$skipExp" \
265 -j 4 -nr -odir ${dNam}-$sfx
266 nFc=`grep -c '^Y . N N ' tr_out.txt`
267 echo " <= fail to compile $nFc experiments"
268 if [ $dAlt -eq 1 ] ; then options="$options -q" ; fi
269 fi
270
271 if [ $dAlt -eq 2 ] ; then options="$options -match 5" ; fi
272 echo ''
273 #- 2) run and report results ; also finish to compile those who failed with "-j"
274 echo ./testreport $options -of $OPTFILE -skd \'$skipExp\' \
275 -odir ${dNam}-$sfx -send \'$SEND\' -sd $SavD -a jm_c@mitgcm.org
276 ./testreport $options -of $OPTFILE -skd "$skipExp" \
277 -odir ${dNam}-$sfx -send "$SEND" -sd $SavD -a jm_c@mitgcm.org
278 retVal=$?
279 $HERE/${dNam}/backup_outp tr_${dNam}-${sfx} $OUTP/backup
280
281 if test "x$retVal" != x0 ; then
282 echo "<== testreport returned retVal=${retVal}, expecting 0"
283 # echo " -> skip restart test 'do_tst_2+2'"
284 #else
285 # echo ''
286 #- 3) test restart and report results
287 # echo ../tools/do_tst_2+2 -mpi \
288 # -o ${dNam}-$sfx -send \'$SEND\' -sd $SavD -a jm_c@mitgcm.org
289 # ../tools/do_tst_2+2 -mpi \
290 # -o ${dNam}-$sfx -send "$SEND" -sd $SavD -a jm_c@mitgcm.org
291 fi

  ViewVC Help
Powered by ViewVC 1.1.22