/[MITgcm]/mitgcm.org/scripts/check_outp
ViewVC logotype

Contents of /mitgcm.org/scripts/check_outp

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


Revision 1.30 - (show annotations) (download)
Fri Aug 19 20:38:19 2011 UTC (12 years, 9 months ago) by jmc
Branch: MAIN
Changes since 1.29: +18 -1 lines
add "+mpi" to optfile name if testreport summary was produced using MPI

1 #! /usr/bin/env bash
2
3 # $Header: /u/gcmpack/mitgcm.org/scripts/check_outp,v 1.29 2011/08/09 16:40:29 jmc Exp $
4 #
5 # The purpose of this script is to compare
6 # the latest output with the previous one (from the same platform with
7 # same optfile)
8
9
10 usage()
11 {
12 echo
13 echo "Usage: $0 [OPTIONS]"
14 echo
15 echo "where possible OPTIONS are:"
16 echo " (-h|-help) print usage"
17 echo " (-v|-verbose) verbose mode"
18 echo " (-l |-list )MACHINES check platforms from this list"
19 echo " [def=\"$MACHINES\"]"
20 echo " (-d |-day )FIRSTDAY select output from day=\"YYYYMMDD\""
21 echo " (argument of \"date -d\" is allowed)"
22 echo " [def=\"$FIRSTDAY\"]"
23 echo " (-u |-upto )LASTDAY until last day=\"YYYYMMDD\" (=selected period)"
24 echo " [def=\"FIRSTDAY\"]"
25 echo " (-b |-before)BEFORE compare with output from before \"YYYYMMDD\""
26 echo " (=previous period) [def=\"FIRSTDAY\"]"
27 echo " (-o |-outp )OUTPFIL output file (-1 removed when exit)"
28 echo " [def=\"$OUTPFIL\"]"
29 echo " (-n |-nldf )NBLDIFF max number of diff lines to echo"
30 echo " [def=\"$NBLDIFF\"]"
31 echo " (-a |-addr )ADDRESS send summary to mail ADDRESS list"
32 echo " [def=\"$ADDRESS\"]"
33 echo
34 exit 1
35 }
36
37 # create list of results dir for one platform:
38 make_resdir_list()
39 {
40 if test $monthDir == 1 ; then
41 dir_list=`grep '.._'$mname ./dir_all`
42 else
43 dir_list=`( cd $INDIR ; ls -1 -t ../$PREV_P/??_*${mname}*/summary.txt 2> /dev/null | sed 's/\/summary.txt//' )`
44 #echo "dir_list='$dir_list'"
45 fi
46 for i in $dir_list ; do
47
48 dir=$INDIR"/"$i
49 #--- get the opfile used to run testreport
50 OPTFILE=
51 if test -r $dir/summary.txt ; then
52 comm=`grep 'OPTFILE=' $dir/summary.txt`
53 eval $comm
54 fi
55 if test "x$OPTFILE" = x -a -r "$dir/genmake_state" ; then
56 comm=`grep 'OPTFILE=' $dir/genmake_state 2>/dev/null`
57 eval $comm
58 fi
59 if test "x$OPTFILE" = x ; then
60 comm=`grep '^# OPTFILE=' $dir/*/Makefile* 2>/dev/null | head -1`
61 comm=${comm##*#}
62 eval $comm
63 fi
64 if test "x$OPTFILE" = x ; then
65 OPTFILE="not_explicitly_specified"
66 else
67 OPTFILE=${OPTFILE##*/}
68 fi
69 #--- case select test run by 1 user: get user who did run testreport
70 if test "x$sUser" != x ; then
71 tUser=
72 if test -f $dir/genmake_state ; then
73 nn=`sed -n '/^# executed by:/=' $dir/genmake_state`
74 if test "x$nn" != x ; then
75 nn=`expr $nn + 1`
76 tUser=`sed -n "$nn s/^# *// p" $dir/genmake_state | sed 's/@.*$//'`
77 fi
78 fi
79 if test "x$tUser" = "x" ; then
80 mkfile=`ls $dir/*/Makefile* 2>/dev/null | head -1`
81 if test "x$mkfile" = 'x' ; then
82 echo "no Makefile => discard test from: $i" | tee -a $OUTPFIL
83 continue
84 fi
85 nn=`sed -n '/^# executed by:/=' $mkfile`
86 if test "x$nn" != x ; then
87 nn=`expr $nn + 1`
88 tUser=`sed -n "$nn s/^# *// p" $mkfile | sed 's/@.*$//'`
89 fi
90 fi
91 if test "x$tUser" = x ; then
92 echo "no User found => discard test from: $i" | tee -a $OUTPFIL
93 continue
94 fi
95 if test $tUser != $sUser ; then
96 if test $dBug = 't' ; then
97 echo " discard test from: $i" | tee -a $OUTPFIL
98 fi
99 continue
100 fi
101 fi
102
103 ADJOINT=
104 RESTART=0
105 FAST=0
106 DVLP=0
107 MPI=0
108 MTH=0
109 UR4=0
110 if test -r $dir/summary.txt ; then
111 comm=`grep 'ADJOINT=true' $dir/summary.txt 2>/dev/null`
112 eval $comm
113 RESTART=`grep -c 'test 2+2=4 summary' $dir/summary.txt`
114 FAST=`grep -c "^run: .*testreport.* '*-fast'*" $dir/summary.txt`
115 if test "x$FAST" = x0 ; then
116 FAST=`grep -c "^run: .*testreport.* '*-noieee'*" $dir/summary.txt`
117 fi
118 DVLP=`grep -c "^run: .*testreport.* '*-devel'*" $dir/summary.txt`
119 MPI=`grep -c "^run: .*testreport.* -mpi " $dir/summary.txt`
120 if test "x$MPI" = x0 ; then
121 MPI=`grep -c "^run: .*testreport.* -MPI " $dir/summary.txt`
122 fi
123 MTH=`grep -c "^run: .*testreport.* -mth" $dir/summary.txt`
124 UR4=`grep -c "^run: .*testreport.* -use_r4 " $dir/summary.txt`
125 if test "x$UR4" = x0 ; then
126 UR4=`grep -c "^run: .*testreport.* -ur4 " $dir/summary.txt`
127 fi
128 fi
129 if test "x$RESTART" = x0 ; then
130 kind="forward"
131 test "x$ADJOINT" = xtrue && kind="adjoint"
132 else
133 kind="restart"
134 fi
135 if test "x$UR4" = x1 ; then
136 OPTFILE="${OPTFILE}.use_r4"
137 fi
138 if test "x$MPI" = x1 ; then
139 yy=`echo $OPTFILE | grep -c '+mpi'`
140 if test $yy = 0 ; then OPTFILE="${OPTFILE}+mpi" ; fi
141 fi
142 if test "x$MTH" = x1 ; then
143 yy=`echo $OPTFILE | grep -c '+mth$'`
144 if test $yy = 0 ; then OPTFILE="${OPTFILE}+mth" ; fi
145 fi
146 if test "x$FAST" = x1 ; then
147 OPTFILE="${OPTFILE}.fast"
148 fi
149 if test "x$DVLP" = x1 ; then
150 OPTFILE="${OPTFILE}.dvlp"
151 fi
152 day=`echo $i | sed -e 's/_[0-9]$//' | sed -e 's/_[0-9][0-9]$//'`
153 ttt=`echo $day | sed -e 's/_[0-9]$//' | sed -e 's/_[0-9][0-9]$//'`
154 day=`echo $ttt | sed -e 's|_| |g' |awk '{print $NF}'`
155
156 if [ $day -lt $BEFORE ] ; then
157 echo "$OPTFILE$kind $day $OPTFILE $kind $i" >> ./plist
158 elif [ $day -ge $FIRSTDAY -a $day -le $LASTDAY ] ; then
159 echo "$OPTFILE$kind $day $OPTFILE $kind $i" >> ./slist
160 else
161 if test $dBug = 't' ; then
162 echo "discard day='$day' from: $i" | tee -a $OUTPFIL
163 fi
164 fi
165
166 done
167 if test $dBug = 't' ; then
168 if test $monthDir == 1 ; then
169 echo "---- current list (n=$monthDir) :" | tee -a $OUTPFIL
170 cat ./slist | tee -a $OUTPFIL
171 fi
172 num1=`wc -l ./slist | awk '{print $1}'`
173 if test $num1 -gt 0 ; then
174 echo ".... previous list (n=$monthDir):" | tee -a $OUTPFIL
175 cat ./plist | tee -a $OUTPFIL | head -20
176 fi
177 echo "----" | tee -a $OUTPFIL
178 fi
179 }
180
181 #--------------------------------------------------------------------------
182 # here starts the sequential part of the script:
183
184 #CURR_PER=`date +%Y`"_"`date +%m`
185 CURR_DAY=`date +%Y%m%d`
186 # defaults
187 MACHINES='_All_'
188 FIRSTDAY=$CURR_DAY
189 LASTDAY="30000000"
190 BEFORE="30000000"
191 OUTPFIL=`basename $0`'.log'
192 NBLDIFF=5
193 ADDRESS='none'
194 dBug=f
195 sTime=`date`
196 #- to get case insensitive "ls" (and order of tested experiments)
197 export LC_ALL="en_US.UTF-8"
198
199 # Parse options
200 ac_prev=
201 for ac_option ; do
202
203 # If the previous option needs an argument, assign it.
204 if test -n "$ac_prev"; then
205 eval "$ac_prev=\$ac_option"
206 ac_prev=
207 continue
208 fi
209
210 ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
211
212 case $ac_option in
213
214 -help | --help | -h | --h) usage ;;
215 -verbose | --verbose | -v | --v) dBug=t ;;
216
217 -list | --list | -l | --l) ac_prev=MACHINES ;;
218 -list=* | --list=*) MACHINES=$ac_optarg ;;
219
220 -day | --day | -d | --d) ac_prev=FIRSTDAY ;;
221 -day=* | --day=*) FIRSTDAY=$ac_optarg ;;
222
223 -upto | --upto | -u | --u) ac_prev=LASTDAY ;;
224 -upto=* | --upto=*) LASTDAY=$ac_optarg ;;
225
226 -before | --before | -b | --b) ac_prev=BEFORE ;;
227 -before=* | --before=*) BEFORE=$ac_optarg ;;
228
229 -outp | --outp | -o | --o) ac_prev=OUTPFIL ;;
230 -outp=* | --outp=*) OUTPFIL=$ac_optarg ;;
231
232 -nldf | --nldf | -n | --n) ac_prev=NBLDIFF ;;
233 -nldf=* | --nldf=*) NBLDIFF=$ac_optarg ;;
234
235 -addr | --addr | -a | --a) ac_prev=ADDRESS ;;
236 -addr=* | --addr=*) ADDRESS=$ac_optarg ;;
237
238 *) echo "Error: don't understand argument \"$ac_option\""
239 usage ;;
240
241 esac
242
243 done
244 #-- test FIRSTDAY content ; interpret as "date -d" arg. if not YYYYMMDD
245 ttt=`echo "y$FIRSTDAY" | sed 's/[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]/z/'`
246 if test "x$ttt" != 'xyz' ; then
247 FIRSTDAY=`date -d "$FIRSTDAY" +%Y%m%d`
248 fi
249 ttt=`echo "y$FIRSTDAY" | sed 's/[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]/z/'`
250 if test "x$ttt" != 'xyz' ; then
251 echo "Error: FIRSTDAY='$FIRSDAY' not recognized"
252 exit 2
253 fi
254 if test $LASTDAY = "30000000" ; then LASTDAY=$FIRSTDAY ; fi
255 if test $BEFORE = "30000000" ; then BEFORE=$FIRSTDAY ; fi
256 CMDLINE=$0
257 for xx in "$@" ; do nw=`echo $xx | wc -w`
258 if test $nw = '1' ; then CMDLINE="$CMDLINE $xx"
259 else CMDLINE="$CMDLINE '$xx'" ; fi
260 done
261
262 PERIOD=`echo $LASTDAY | sed 's/[0-9][0-9]$//'`
263 PP=`expr $PERIOD - 1`
264 PM=`echo $PP | sed 's/^[0-9][0-9][0-9][0-9]//'`
265 PY=`echo $PP | sed 's/[0-9][0-9]$//'`
266 if test $PM == '00' ; then PM='12' ; PY=`expr $PY - 1` ; fi
267 PREV_P="${PY}_${PM}";
268 PERIOD=`echo $PERIOD | sed 's/^[0-9][0-9][0-9][0-9]/&_/'`
269
270 #INDIR="/net/orwell/export/export-9/mitgcm-testing/results/$PERIOD"
271 INDIR="/u/u0/httpd/html/testing/results/$PERIOD"
272 #INDIR="/export/export-7/u/u2/jmc/mitgcm/test_web/results/$PERIOD"
273
274 if test $OUTPFIL = '-1' ; then
275 OUTPFIL='TTT.'$$
276 elif test -e $OUTPFIL ; then
277 mv -f $OUTPFIL $OUTPFIL'_bak'
278 fi
279 echo "CMDLINE='$CMDLINE'" > $OUTPFIL
280 echo "PERIOD='$PERIOD' , PREV_P='$PREV_P'" >> $OUTPFIL
281 echo "INDIR='$INDIR'" >> $OUTPFIL
282 echo "Checking latest output from $FIRSTDAY until $LASTDAY" >> $OUTPFIL
283 echo " versus latest from before $BEFORE" >> $OUTPFIL
284
285 if test $dBug = 't' ; then
286 echo "PERIOD='$PERIOD' , PREV_P='$PREV_P'"
287 echo "FIRSTDAY='$FIRSTDAY' , LASTDAY='$LASTDAY' , BEFORE='$BEFORE'"
288 fi
289 if test -d $INDIR ; then
290 dirP=`echo $INDIR | sed "s/$PERIOD/$PREV_P/"`
291 if test -d $dirP ; then
292 listNum='1 2'
293 else
294 echo "$dirP is not a directory"
295 listNum='1'
296 fi
297 else
298 echo "$INDIR is not a directory"
299 exit 3
300 fi
301
302 #- a short summary of this checking :
303 OUTPSUM=`echo $LASTDAY | sed 's/^20../_/'`
304 OUTPSUM=`basename $0`"$OUTPSUM.txt"
305 if test -e $OUTPSUM ; then mv -f $OUTPSUM $OUTPSUM'_bak' ; fi
306 echo ' '$CMDLINE > $OUTPSUM
307
308 if test $FIRSTDAY = $LASTDAY ; then
309 echo -n "Checking latest output from $FIRSTDAY" | tee -a $OUTPSUM
310 else
311 echo -n "Checking latest output from $FIRSTDAY until $LASTDAY" | tee -a $OUTPSUM
312 fi
313 if test $FIRSTDAY = $BEFORE ; then
314 echo " versus latest prior to this period" | tee -a $OUTPSUM
315 else
316 echo " versus latest from before $BEFORE" | tee -a $OUTPSUM
317 fi
318 echo " Machine Tot. Nb. no Nb with Nb diff" >> $OUTPSUM
319 echo " name checked comp Diff lines" >> $OUTPSUM
320
321 ( cd $INDIR ; ls -1 -t */summary.txt | sed 's/\/summary.txt//' ) > ./dir_all
322
323 if test "x$MACHINES" = "x_All_" ; then
324 MACHINES="faulks meander aces- acesgrid baudelaire dickens danton beagle harbor"
325 MACHINES="$MACHINES pleiades iblade rays solasrv sx8"
326 MACHINES="$MACHINES trane dodongo dokdo stomp bigred"
327
328 MALL=`cat ./dir_all | sed -e 's|_| |g' | awk '{print $2}' | sort | uniq`
329 for madd in $MALL ; do
330 present=0
331 for m in $MACHINES ; do
332 mm=`echo $m | sed 's/\./ /g' | awk '{print $1}'`
333 echo $madd | grep $mm > /dev/null 2>&1
334 RETVAL=$?
335 test $RETVAL = 0 && present=1
336 continue
337 done
338 test $present = 0 && MACHINES="$MACHINES $madd"
339 done
340 fi
341 #echo "MACHINES=$MACHINES" ; exit
342
343 for pname in $MACHINES ; do
344
345 sname=`echo $pname | sed 's/-$//'`
346 mname=`echo $pname | sed 's/\./ /g' | awk '{print $1}'`
347 sUser=
348 if test $mname != $pname ; then
349 # to select results from user "sUser"
350 sUser=`echo $pname | sed 's/\./ /g' | awk '{print $2}'`
351 fi
352
353 if test $dBug = 't' ; then echo " $pname" ; fi
354 echo " name='$pname'" >> $OUTPFIL
355 ctot=0 ; cmis=0 ; cdif=0
356
357 # put results from selected period in "slist",
358 # results from previous period in "plist"
359 rm -f ./plist ./slist ; touch ./plist ./slist
360
361 #- create list of results (slist & plist) from current month directory
362 monthDir=1
363 make_resdir_list
364
365 # Do we have any data? If so, create the latest pointer.
366 num=`wc -l ./slist | awk '{print $1}'`
367 if test $num -gt 0 ; then
368
369 keys=`cat ./slist | cut -d " " -f 1 | sort | uniq`
370
371 for key in $keys ; do
372 ctot=`expr $ctot + 1`
373 sline=`grep "^$key " ./slist | head -1`
374 sdir=`echo $sline | cut -d " " -f 5`
375 type=`echo $sline | cut -d " " -f 4`
376 optf=`echo $sline | cut -d " " -f 3`
377 num=`grep -c "^$key" ./plist`
378 if test $num = 0 -a $monthDir = 1 ; then
379 #- add results from previous month directory to "plist".
380 monthDir=2
381 make_resdir_list
382 num=`grep -c "^$key" ./plist`
383 fi
384 #- discard unsafe test:
385 dd=`echo $optf | grep -c 'gfortran+mth'`
386 if test $mname = 'lagoon' -a $dd = 1 ; then num=-1 ; fi
387 if test $mname = 'harbor' -a $dd = 1 ; then num=-1 ; fi
388 #if test $mname = 'aces' -a $optf = 'linux_ia32_open64' ; then num=-1 ; fi
389 #if test $mname = 'aces' -a $optf = 'linux_ia32_g95' ; then num=-1 ; fi
390 dd=`echo $optf | grep -c 'bigred.*noieee'`
391 #if test $mname = 'bigred' -a $dd = 1 ; then num=-1 ; fi
392 if test $num -lt 0 ; then
393 echo " discard $sdir : $type , of='$optf'" | tee -a $OUTPFIL
394 cmis=`expr $cmis + 1`
395 elif test $num = '0' ; then
396 echo "no previous test for:" $key | tee -a $OUTPFIL
397 cmis=`expr $cmis + 1`
398 else
399 pline=`grep "^$key " ./plist | head -1`
400 if test $dBug = 't' ; then
401 echo "s='$sline'" | tee -a $OUTPFIL
402 echo "p='$pline'" | tee -a $OUTPFIL
403 fi
404 pdir=`echo $pline | cut -d " " -f 5`
405 outs="$INDIR/$sdir/summary.txt"
406 xx=`( echo 5 ; sed -n '/^ OPTFILE=/=' $outs ) | tail -1`
407 sed "1,$xx d" $outs | sed '/^[YN] [YN] [YN] [YN]/ s/ \. //g' \
408 | grep -v '^[A-S][a-t]* time: ' > tmpfs
409 outp="$INDIR/$pdir/summary.txt"
410 xx=`( echo 5 ; sed -n '/^ OPTFILE=/=' $outp ) | tail -1`
411 sed "1,$xx d" $outp | sed '/^[YN] [YN] [YN] [YN]/ s/ \. //g' \
412 | grep -v '^[A-S][a-t]* time: ' > tmpfp
413 #-- re-order list of exp (according to local "sort" order)
414 listD=`grep '^[YN] [YN] [YN] [YN]' tmpfs | awk '{print $NF}' | sort`
415 for xx in $listD
416 do
417 sed "/ $xx\$/d" tmpfs > tmpfn
418 sed -n "/ $xx\$/p" tmpfs >> tmpfn
419 mv tmpfn tmpfs
420 done
421 listD=`grep '^[YN] [YN] [YN] [YN]' tmpfp | awk '{print $NF}' | sort`
422 for xx in $listD
423 do
424 sed "/ $xx\$/d" tmpfp > tmpfn
425 sed -n "/ $xx\$/p" tmpfp >> tmpfn
426 mv tmpfn tmpfp
427 done
428 echo -n "=== diff $sdir $pdir :" | tee -a $OUTPFIL
429 diff tmpfs tmpfp > tmpdf
430 yy=$?
431 if test $yy != '0' ; then
432 echo " $type , of='$optf'" | tee -a $OUTPFIL
433 #grep '^run: ' $outp
434 #grep '^run: ' $outs
435 #-- score for each test:
436 grep '^[YN] [YN] [YN] [YN]' tmpfs > tmploc 2>/dev/null
437 t_tot=`cat tmploc | wc -l | sed -e 's| ||g'`
438 t_pass=`grep '^Y Y Y Y' tmploc | grep 'pass ' | wc -l | sed -e 's| ||g'`
439 score_s=`printf '%2i' $t_pass`":$t_tot"
440 grep '^[YN] [YN] [YN] [YN]' tmpfp > tmploc 2>/dev/null
441 t_tot=`cat tmploc | wc -l | sed -e 's| ||g'`
442 t_pass=`grep '^Y Y Y Y' tmploc | grep 'pass ' | wc -l | sed -e 's| ||g'`
443 score_p=`printf '%2i' $t_pass`":$t_tot"
444 rm -f tmploc
445 #-- count Nb of different lines
446 ndf=`wc -l tmpdf | awk '{print $1}'`
447 ndf=`expr $ndf / 2`
448 nn=`grep -c '^---' tmpdf`
449 ndf=`expr $ndf - $nn`
450 if [ $ndf -le $NBLDIFF ] ; then
451 cat tmpdf
452 else
453 echo " $ndf lines differ ( $score_s , $score_p )"
454 fi
455 echo "< "`head -1 $outs`" ( $score_s )" >> $OUTPFIL
456 echo "> "`head -1 $outp`" ( $score_p )" >> $OUTPFIL
457 cat tmpdf >> $OUTPFIL
458 if [ $cdif -eq 0 ] ; then
459 clin=`printf '%3i (%5s,%5s)' $ndf $score_s $score_p`
460 else
461 clin="$clin,"`printf '%3i (%5s,%5s)' $ndf $score_s $score_p`
462 fi
463 cdif=`expr $cdif + 1`
464 echo '----------------------------------------' | tee -a $OUTPFIL
465 else
466 echo " $type , of='$optf'" | tee -a $OUTPFIL
467 fi
468 rm -f tmpfs tmpfp tmpdf
469 fi
470 done
471 if [ $cmis -gt 0 ] ; then tmis='(-'$cmis')' ; else tmis='(--)' ; fi
472 printf '%11s : %3i %4s %3i ' $sname $ctot $tmis $cdif >> $OUTPSUM
473 if [ $cdif -gt 0 ] ; then
474 echo " $clin" >> $OUTPSUM
475 else echo "" >> $OUTPSUM ; fi
476 fi
477
478 done
479
480 echo "Start time: $sTime" | tee -a $OUTPFIL
481 echo "End time: "`date` | tee -a $OUTPFIL | tee -a $OUTPSUM
482
483 rm -f ./dir_all ./slist ./plist
484 if test $OUTPFIL = "TTT.$$" ; then rm -f $OUTPFIL ; fi
485 if test "x$ADDRESS" != 'xnone' ; then
486 echo ".. send $OUTPSUM to $ADDRESS"
487 mail -s $OUTPSUM $ADDRESS < $OUTPSUM
488 fi
489 echo ".. cat $OUTPSUM"
490 cat $OUTPSUM
491 exit 0

  ViewVC Help
Powered by ViewVC 1.1.22