/[MITgcm]/MITgcm/verification/testreport
ViewVC logotype

Contents of /MITgcm/verification/testreport

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


Revision 1.31 - (show annotations) (download)
Sun Dec 7 05:30:37 2003 UTC (20 years, 3 months ago) by edhill
Branch: MAIN
Changes since 1.30: +4 -2 lines
 o only build mpack if it will be used

1 #! /usr/bin/env bash
2 #
3 # $Header: /u/u3/gcmpack/MITgcm/verification/testreport,v 1.30 2003/12/05 17:46:32 edhill Exp $
4 # $Name: $
5 #
6
7 usage()
8 {
9 echo
10 echo "Usage: $0 [OPTIONS]"
11 echo
12 echo "where possible OPTIONS are:"
13 echo " (-help|-h) print usage"
14 echo " (-mpi) use MPI input files"
15 echo " (-ieee|-noieee) if possible, use IEEE compiler flags"
16 echo " (DEF=\"noieee\")"
17 echo " (-optfile=|-of=)STRING list of optfiles to use"
18 echo " (-a|-addr) STRING list of email recipients"
19 echo " (DEF=\"edhill@mitgcm.org\")"
20 echo " (-t|-tdir) STRING list of test dirs to use"
21 echo " (DEF=\"\" which builds all)"
22 echo " (-b|-bash) STRING preferred location of a \"bash\" or"
23 echo " Bourne-compatible \"sh\" shell"
24 echo " (DEF=\"\" for \"bash\")"
25 echo " (-adm|-ad) perform an adjoint run"
26 echo " (-command) STRING command to run"
27 echo " (DEF=\"make output.txt\")"
28 echo " (-m|-make) STRING command to use for \"make\""
29 echo " (DEF=\"make\")"
30 echo " (-clean) *ONLY* run \"make CLEAN\""
31 echo " (-quick|-q) same as \"-nogenmake -noclean -nodepend\""
32 echo " (-nogenmake|-ng) skip the genmake stage"
33 echo " (-noclean|-nc) skip the \"make clean\" stage"
34 echo " (-nodepend|-nd) skip the \"make depend\" stage"
35 echo
36 echo "and where STRING follows a whitespace-delimited format"
37 echo "such as:"
38 echo " -t 'exp0 exp2 exp3' "
39 echo " -addr='abc@123.com testing@home.org'"
40 echo
41 exit 1
42 }
43
44 # build the mpack utility
45 build_mpack()
46 {
47 echo -n "building the mpack utility... "
48 if test ! -x "$MPACKDIR/mpack" ; then
49 if test ! -d $MPACKDIR ; then
50 echo
51 echo "Error: can't find \"$MPACKDIR\""
52 echo " are you sure this program is being run in the correct "
53 echo " (that is, \"MITGCM_ROOT\verification\") directory?"
54 echo
55 HAVE_MPACK=f
56 fi
57 echo -n "building mpack... "
58 if test "x$CC" = x ; then
59 export CC=cc
60 fi
61 ( cd $MPACKDIR && ./configure && $MAKE ) > tr_build_mpack.out 2>&1
62 RETVAL=$?
63 if test "x$RETVAL" != x0 ; then
64 echo
65 echo "Error building the mpack tools at: $MPACK_DIR"
66 echo
67 HAVE_MPACK=f
68 else
69 rm -f tr_build_mpack.out
70 HAVE_MPACK=t
71 fi
72 else
73 HAVE_MPACK=t
74 fi
75 echo "OK"
76 }
77
78 testoutput_for_prop()
79 {
80 # testoutput_for_prop dir s1 label subdir
81 #
82 # compares files in $dir/$subdir/output.txt and $dir/results/output.txt
83 # using search strings s1 and text label
84
85 if [ $debug -gt 0 ]; then
86 echo testoutput_for_prop: grep "$2" $1/$4/output.txt 1>&2
87 fi
88 if [ -r $1/$4/output.txt ]; then
89 grep "$2" $1/$4/output.txt | sed 's/.*=//' | cat -n > tmp1.txt
90 lncnt=`wc -l tmp1.txt | awk '{print $1}' `
91 if [ $lncnt -lt 3 ]; then
92 if [ $verbose -gt 0 ]; then
93 echo Not enough lines of output when searching for "$2" 1>&2
94 fi
95 return 99
96 fi
97 else
98 echo testoutput_for_prop: output.txt from model run was not readable 1>&2
99 return 99
100 fi
101 if [ $debug -gt 0 ]; then
102 echo testoutput_for_prop: grep "$2" $1/results/output.txt 1>&2
103 fi
104 grep "$2" $1/results/output.txt | sed 's/.*=//' | cat -n > tmp2.txt
105 lncnt=`wc -l tmp2.txt | awk '{print $1}' `
106 if [ $lncnt -lt 3 ]; then
107 if [ $verbose -gt 0 ]; then
108 echo Not enough lines of output when searching for "$2" 1>&2
109 fi
110 return 99
111 fi
112 if [ $debug -gt 0 ]; then
113 echo testoutput_for_prop: join tmp1.txt tmp2.txt 1>&2
114 fi
115 join tmp1.txt tmp2.txt | awk '{print $1 " " $2 " " $3}' > tmp3.txt
116 if [ $debug -gt 0 ]; then
117 echo testoutput_for_prop: compare_lines 1>&2
118 fi
119 if [ $verbose -gt 1 ]; then
120 cat tmp3.txt 1>&2
121 fi
122 echo "-1" >> tmp3.txt
123 # On the SGI O3K (*not* the O2K), "cat -n" inserts a ":" after the line number
124 cat tmp3.txt | sed -e 's|:||g' > tmp4.txt
125 digits_of_similarity=`./tmp_cmpnum < tmp4.txt`
126 if [ $digits_of_similarity -eq 99 ]; then
127 if [ $verbose -gt 0 ]; then
128 echo testoutput_for_prop: No comparison was available for \"$2\" 1>&2
129 fi
130 digits_of_similarity=99
131 else
132 if [ $verbose -gt 0 ]; then
133 echo There were $digits_of_similarity decimal places of similarity for \"$2\" 1>&2
134 fi
135 fi
136 rm -f tmp1.txt tmp2.txt tmp3.txt tmp4.txt
137
138 return $digits_of_similarity
139 }
140
141 dashnum()
142 {
143 # dashnum n1 n2 n3 ...
144 #
145 # print numbers using %3i format or "--" if number = 99
146
147 for num in $@ ; do
148 if [ $num = 99 ]; then
149 printf ' --'
150 else
151 printf '%3i' $num
152 fi
153 done
154 }
155
156 testoutput_ad()
157 {
158 grep $3 $1/results_ad/output.txt_adm | awk '{print NR " " $5}' > t05.txt
159 grep $3 $1/$2/output.txt_adm | awk '{print NR " " $5}' > t15.txt
160 grep $3 $1/results_ad/output.txt_adm | awk '{print NR " " $6}' > t06.txt
161 grep $3 $1/$2/output.txt_adm | awk '{print NR " " $6}' > t16.txt
162 join t05.txt t15.txt > t5.txt
163 join t06.txt t16.txt > t6.txt
164 echo "-1" >> t5.txt
165 echo "-1" >> t6.txt
166 digits_5=`./tmp_cmpnum < t5.txt`
167 digits_6=`./tmp_cmpnum < t6.txt`
168 dashnum $digits_5 $digits_6
169 rm -f t[01][56].txt t[56].txt
170 }
171
172 testoutput()
173 {
174 # testoutput directory subdir
175 #
176 # test output in "directory"
177 if test "x$ADM" = x ; then
178 if [ $debug -gt 0 ]; then
179 echo testoutput: testoutput_for_prop $1 cg2d_init_res 1>&2
180 fi
181 testoutput_for_prop $1 "cg2d_init_res" "cg2d init. residual" $2; cg2dres=$?
182 if [ $debug -gt 0 ]; then
183 echo testoutput: cg2dres=$cg2dres 1>&2
184 fi
185 testoutput_for_prop $1 "dynstat_theta_min" "theta minimum" $2; tmin=$?
186 testoutput_for_prop $1 "dynstat_theta_max" "theta maximum" $2; tmax=$?
187 testoutput_for_prop $1 "dynstat_theta_mean" "theta mean" $2; tmean=$?
188 testoutput_for_prop $1 "dynstat_theta_sd" "theta s.d." $2; tsd=$?
189 testoutput_for_prop $1 "dynstat_salt_min" "salt minimum" $2; smin=$?
190 testoutput_for_prop $1 "dynstat_salt_max" "salt maximum" $2; smax=$?
191 testoutput_for_prop $1 "dynstat_salt_mean" "salt mean" $2; smean=$?
192 testoutput_for_prop $1 "dynstat_salt_sd" "salt s.d." $2; ssd=$?
193 testoutput_for_prop $1 "dynstat_uvel_min" "U minimum" $2; umin=$?
194 testoutput_for_prop $1 "dynstat_uvel_max" "U maximum" $2; umax=$?
195 testoutput_for_prop $1 "dynstat_uvel_mean" "U mean" $2; umean=$?
196 testoutput_for_prop $1 "dynstat_uvel_sd" "U s.d." $2; usd=$?
197 testoutput_for_prop $1 "dynstat_vvel_min" "V minimum" $2; vmin=$?
198 testoutput_for_prop $1 "dynstat_vvel_max" "V maximum" $2; vmax=$?
199 testoutput_for_prop $1 "dynstat_vvel_mean" "V mean" $2; vmean=$?
200 testoutput_for_prop $1 "dynstat_vvel_sd" "V s.d." $2; vsd=$?
201 dashnum $cg2dres $tmin $tmax $tmean $tsd $smin $smax $smean $ssd \
202 $umin $umax $umean $usd $vmin $vmax $vmean $vsd
203 else
204 testoutput_ad $1 $2 "precision_grdchk_result"
205 fi
206 }
207
208 genmakemodel()
209 {
210 # genmakemodel directory
211 if test "x$NOGENMAKE" = xt ; then
212 echo "genmake skipped!"
213 else
214 GENMAKE2="$BASH ../../../tools/genmake2"
215 (
216 cd $1;
217 command="$GENMAKE2 -ds -m $MAKE"
218 if test "x$ADM" = x ; then
219 command="$command --mods=../code"
220 else
221 command="$command --mods=../code_ad"
222 command="$command -adof=../../../tools/adjoint_options/adjoint_staf"
223 fi
224 if test "x$OPTFILE" != xNONE ; then
225 command="$command --optfile=$OPTFILE"
226 fi
227 if test "x$IEEE" != x ; then
228 command="$command -ieee"
229 fi
230 printf 'genmake ... ' 1>&2
231 $command > make.log 2>&1
232 RETVAL=$?
233 cp Makefile $CDIR
234 if test "x$RETVAL" != x0 ; then
235 tail make.log
236 echo "genmakemodel: genmake failed" 1>&2
237 cp genmake_* make.log $CDIR
238 return 1
239 else
240 echo "successful" 1>&2
241 fi
242 )
243 fi
244 }
245
246 makeclean()
247 {
248 # makeclean directory
249 if test "x$NOCLEAN" = xt ; then
250 echo "make CLEAN skipped!"
251 else
252 (
253 cd $1;
254 if test -e output.txt ; then
255 rm -f output.txt
256 fi
257 printf 'make CLEAN ... ' 2>&1
258 if test -r Makefile ; then
259 $MAKE CLEAN >> make.log 2>&1
260 RETVAL=$?
261 if test "x$RETVAL" != x0 ; then
262 tail make.log
263 echo "makeclean: \"make CLEAN\" failed" 1>&2
264 cp make.log $CDIR"/make.log"
265 return 1
266 fi
267 fi
268 echo successful 1>&2
269 exit 0
270 )
271 fi
272 }
273
274 makedependmodel()
275 {
276 # makedependmodel directory
277 if test "x$NODEPEND" = xt ; then
278 echo "make depend skipped!"
279 else
280 (
281 cd $1;
282 printf 'make depend ... ' 1>&2
283 $MAKE depend >> make.log 2>&1
284 RETVAL=$?
285 if test "x$RETVAL" != x0 ; then
286 tail make.log
287 echo "makedependmodel: make depend failed" 1>&2
288 cp make.log $CDIR"/make.log"
289 return 1
290 else
291 echo successful 1>&2
292 fi
293 )
294 fi
295 }
296
297 makemodel()
298 {
299 # makemodel directory
300 (
301 cd $1;
302 if test -r Makefile ; then
303 printf 'make ... ' 1>&2
304 if test "x$ADM" = x ; then
305 $MAKE >> make.log 2>&1
306 else
307 $MAKE adall >> make.log 2>&1
308 fi
309 RETVAL=$?
310 if test "x$RETVAL" != x0 ; then
311 tail make.log
312 echo failed 1>&2
313 cp make.log $CDIR"/make.log"
314 return 1
315 else
316 echo successful 1>&2
317 fi
318 fi
319 )
320 }
321
322 symlink_mpifiles()
323 {
324 # Put special links so that MPI specific files are used
325 # This MUST be invoked between makeclean and makelinks because
326 # the Makefile will link to non-mpi files by default
327
328 dir=$1
329 code_dir=$2
330 BUILD_DIR=$dir/$3
331 CODE_DIR=$dir/$code_dir
332
333 # These are files that should replace their counter-part when using -mpi
334 MPI_FILES=`(cd $CODE_DIR; find . -name "*_mpi")`
335
336 # Is this an MPI run?
337 if test "x$MPI" = xt ; then
338 # YES: We symbolically link these files to the build
339 # dir so long as there is no real file in place
340 for ii in $MPI_FILES ; do
341 i=`echo $ii | sed 's:^\./::'`
342 name=`echo $i | sed 's:_mpi::' `
343 cmp $CODE_DIR/$i $BUILD_DIR/$name > /dev/null 2>&1
344 RETVAL=$?
345 if test "x$RETVAL" != x0 ; then
346 if ! test -f $BUILD_DIR/$i ; then
347 #echo Linking $name to $i
348 (cd $BUILD_DIR; ln -sf ../$code_dir/$i $name)
349 fi
350 fi
351 done
352 else
353 # NO: We undo any _mpi symbolically linked files
354 for ii in $MPI_FILES ; do
355 i=`echo $ii | sed 's:^\./::'`
356 name=`echo $i | sed 's:_mpi::' `
357 if test -L $BUILD_DIR/$name ; then
358 linktarg=`(cd $BUILD_DIR; readlink $name)`
359 if test $linktarg = "../$code_dir/$name"_mpi ; then
360 #echo Un-linking $name from $linktarg
361 rm -f $BUILD_DIR/$name
362 fi
363 fi
364 done
365 fi
366
367 }
368
369 linkdata()
370 {
371 # linkdata flag
372 #
373 # symbolically link data files to run directory
374 if test "x$1" = x1 ; then
375 (
376 cd $2
377 if test "x$ADM" = x ; then
378 files=`( cd ../input ; ls -1 | grep -v CVS )`
379 for i in $files ; do
380 if test ! -d "../input/"$i ; then
381 ln -sf "../input/"$i $i
382 fi
383 done
384 else
385 files=`( cd ../input ; ls -1 *.bin | grep -v CVS )`
386 for i in $files ; do
387 if test ! -d "../input/"$i ; then
388 ln -sf "../input/"$i $i
389 fi
390 done
391 files=`( cd ../input_ad ; ls -1 | grep -v CVS )`
392 for i in $files ; do
393 if test ! -d "../input_ad/"$i ; then
394 ln -sf "../input_ad/"$i $i
395 fi
396 done
397 fi
398 )
399 fi
400 }
401
402 runmodel()
403 {
404 # runmodel directory
405 #
406 # runs "$COMMAND in "directory"
407 # (where "$COMMAND" is relative to "directory")
408 (
409 cd $1
410 printf 'runmodel ... ' 1>&2
411 # make output.txt
412 $COMMAND >> run.log 2>&1
413 RETVAL=$?
414 if test "x$RETVAL" = x0 ; then
415 echo successful 1>&2
416 if test "x$ADM" = x ; then
417 cp output.txt $CDIR"/output.txt"
418 else
419 cp output.txt_adm $CDIR"/output.txt_adm"
420 fi
421 return 0
422 else
423 tail run.log
424 echo failed 1>&2
425 cp run.log $CDIR"/run.log"
426 return 1
427 fi
428 )
429 }
430
431 createcodelet()
432 {
433 # create codelet for comparing model output
434
435 echo -n "creating the comparison code... "
436 cat > tmp_cmpnum.c <<EOF
437 #include <stdio.h>
438 #include <math.h>
439 int main( int argc, char** argv ) {
440 int linnum,best;
441 double a,b,diff;
442 best = -16;
443 while( 1 ) {
444 scanf("%d", &linnum);
445 if (linnum == -1) break;
446 scanf("%lf", &a); scanf("%lf", &b);
447 diff = 0.5*(fabs(a)+fabs(b));
448 if (diff > 1.e-12) {
449 diff=fabs(a-b)/diff;
450 if (diff > 0.0) {
451 linnum = (int)log10(diff);
452 best = (best > linnum) ? best : linnum;
453 }
454 else {
455 if (best == -16 && diff != 0) best = -22;
456 }
457 }
458 }
459 printf("%d\n", -best);
460 return 0;
461 }
462 EOF
463 cc -o tmp_cmpnum tmp_cmpnum.c -lm
464
465 if [ -x ./tmp_cmpnum ]; then
466 echo "OK"
467 return 0
468 else
469 echo
470 echo "ERROR: failed to compile comparison code"
471 exit 1
472 fi
473 }
474
475 formatresults()
476 {
477 # formatresults expt genmake depend make run results*
478
479 nm=$1
480 printf '%s %s %s %s' $2 $3 $4 $5
481 shift; shift; shift; shift; shift;
482 printf '%3s' $@
483
484 if [ $1 = '--' ]; then
485 printf ' N/O '
486 else
487 if [ $1 -gt 12 ]; then
488 printf ' pass'
489 else
490 printf ' FAIL'
491 fi
492 fi
493 printf ' %s' $nm
494 printf '\n'
495
496 }
497
498 show_help()
499 {
500 cat - << EOF
501 $0 [-help] [-quick] [-verbose] dir1 [dir2] [...]
502
503 -help|-h Show this help message
504 -quiet Reduce the amount of output
505 -verbose Produce copious amounts of output
506 -debug Produce even more output which will mean nothing to most
507 -force Do "make CLEAN" before compiling. This forces a complete rebuild.
508 -clean Do "make CLEAN" after compiling and testing.
509 -cleanup Aggresively removes all model output, executables and object files
510 and then exits. Use with care.
511
512 Normal usage:
513 $0 * Configure, compile, run and analyze in all experiment directories
514 EOF
515 }
516
517 scandirs()
518 {
519 if [ $# -eq 0 ]; then
520 for arg in * ; do
521 test -d $arg/input && echo $arg
522 done
523 else
524 echo $*
525 fi
526 }
527
528
529 ###############################################################################
530
531
532 # Default properties
533 debug=0
534 verbose=1
535 clean=0
536 expts=''
537 # ieee=1
538
539 IEEE=
540 if test "x$MITGCM_IEEE" != x ; then
541 IEEE=$MITGCM_IEEE
542 fi
543
544
545 CLEANUP=f
546 QUICK=f
547 NOGENMAKE=f
548 NOCLEAN=f
549 NODEPEND=f
550
551 BASH=
552 OPTFILE=NONE
553 ADDRESSES=
554 TESTDIRS=
555 MPACKDIR="../tools/mpack-1.6"
556 HAVE_MPACK=
557 MPACK="$MPACKDIR/mpack"
558 COMMAND=
559 MAKE=make
560 MPI=f
561
562 ADM=
563
564 echo -n "parsing options... "
565
566 ac_prev=
567 for ac_option ; do
568
569 # If the previous option needs an argument, assign it.
570 if test -n "$ac_prev"; then
571 eval "$ac_prev=\$ac_option"
572 ac_prev=
573 continue
574 fi
575
576 ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
577
578 case $ac_option in
579
580 -help | --help | -h | --h)
581 usage ;;
582
583 -optfile | --optfile | -of | --of)
584 ac_prev=OPTFILE ;;
585 -optfile=* | --optfile=* | -of=* | --of=*)
586 OPTFILE=$ac_optarg ;;
587
588 -addr | --addr | -a | --a)
589 ac_prev=ADDRESSES ;;
590 -addr=* | --addr=*)
591 ADDRESSES=$ac_optarg ;;
592
593 -tdir | --tdir | -t | --t)
594 ac_prev=TESTDIRS ;;
595 -tdir=* | --tdir=*)
596 TESTDIRS=$ac_optarg ;;
597
598 -bash | --bash | -b | --b)
599 ac_prev=BASH ;;
600 -bash=* | --bash=*)
601 BASH=$ac_optarg ;;
602
603 -command | --command | -c | --c)
604 ac_prev=COMMAND ;;
605 -command=* | --command=*)
606 COMMAND=$ac_optarg ;;
607
608 -make | --make | -m | --m)
609 ac_prev=MAKE ;;
610 -make=* | --make=*)
611 MAKE=$ac_optarg ;;
612
613 -clean | --clean)
614 CLEANUP=t ;;
615
616 -quick | --quick | -q | --q)
617 QUICK=t ;;
618 -nogenmake | --nogenmake | -ng | --ng)
619 NOGENMAKE=t ;;
620 -noclean | --noclean | -nc | --nc)
621 NOCLEAN=t ;;
622 -nodepend | --nodepend | -nd | --nd)
623 NODEPEND=t ;;
624
625 -mpi) MPI=t ;;
626
627 -adm | -ad) ADM=t ;;
628
629 -ieee) IEEE=true ;;
630 -noieee) IEEE= ;;
631
632 -verbose) verbose=2 ;;
633 -debug) debug=1 ;;
634 -quiet) verbose=0 ;;
635
636 -*)
637 echo "Error: unrecognized option: "$ac_option
638 usage
639 ;;
640
641 *)
642 echo "Error: unrecognized argument: "$ac_option
643 usage
644 ;;
645
646 esac
647
648 done
649
650 if test "x$QUICK" = xt ; then
651 NOGENMAKE=t
652 NOCLEAN=t
653 NODEPEND=t
654 fi
655
656 if test "x$TESTDIRS" = x ; then
657 TESTDIRS=`scandirs`
658 fi
659
660 if test "x$OPTFILE" = xNONE -a "x$MITGCM_OF" != x ; then
661 OPTFILE=$MITGCM_OF
662 fi
663
664 if test "x$ADM" = xt -a "x$COMMAND" = x ; then
665 COMMAND="./mitgcmuv_ad > output.txt_adm 2>&1"
666 fi
667
668 if test "x$COMMAND" = x ; then
669 COMMAND="make output.txt"
670 fi
671
672 echo "OK"
673
674 # create the FORTRAN comparison code
675 createcodelet
676
677 # build the mpack utility
678 if test "x$ADDRESSES" = xNONE -o "x$ADDRESSES" = x ; then
679 build_mpack
680 fi
681
682 # Create a uniquely named directory to store results
683 MACH=`hostname`
684 UNAMEA=`uname -a`
685 DATE=`date +%Y%m%d`
686 BASE="tr_"$MACH"_"$DATE"_"
687 DNUM=0
688 DRESULTS="$BASE$DNUM"
689 while test -e $DRESULTS ; do
690 DNUM=$(( $DNUM + 1 ))
691 DRESULTS="$BASE$DNUM"
692 done
693 mkdir $DRESULTS
694 RETVAL=$?
695 if test "x$RETVAL" != x0 ; then
696 echo "ERROR: Can't create results directory \"./$DRESULTS\""
697 exit 1
698 fi
699 SUMMARY="$DRESULTS/summary.txt"
700 echo -n "Start time: " >> $SUMMARY
701 start_date=`date`
702 echo $start_date > $SUMMARY
703
704 of_path=
705 if test "x$OPTFILE" != xNONE ; then
706 if test -r $OPTFILE ; then
707 # get the path
708 path=${OPTFILE%/*}
709 if test "x$path" = x ; then
710 of_path=`pwd`
711 else
712 of_path=`( cd $path > /dev/null 2>&1 ; pwd )`
713 fi
714 file=${OPTFILE##*/}
715 OPTFILE=$of_path/$file
716 cp $OPTFILE $DRESULTS
717 echo >> $SUMMARY
718 echo " OPTFILE=$OPTFILE" >> $SUMMARY
719 else
720 echo | tee $SUMMARY
721 echo "ERROR: can't read OPTFILE=\"$OPTFILE\"" | tee $SUMMARY
722 exit 1
723 fi
724 else
725 echo >> $SUMMARY
726 echo "No \"OPTFILE\" was explicitly specified by testreport," >> $SUMMARY
727 echo " so the genmake default will be used." >> $SUMMARY
728 fi
729 echo
730 echo >> $SUMMARY
731 if test "x$ADM" = x ; then
732 cat << EOF | tee -a $SUMMARY
733 T S U V
734 G D M c m s m s m s m s
735 E p a R g m m e . m m e . m m e . m m e .
736 N n k u 2 i a a d i a a d i a a d i a a d
737 2 d e n d n x n . n x n . n x n . n x n .
738
739 EOF
740 else
741 echo "ADJOINT=true" >> $SUMMARY
742 echo >> $SUMMARY
743 cat << EOF | tee -a $SUMMARY
744 G D M C G
745 E p a R o r
746 N n k u s a
747 2 d e n t d
748
749 EOF
750 fi
751
752 # ...and each test directory...
753 for dir in $TESTDIRS ; do
754
755 # Cleanup only!
756 if test "x$CLEANUP" = xt ; then
757 if test -r $dir/build/Makefile ; then
758 ( cd $dir/build ; make CLEAN )
759 fi
760 if test -r $dir/input/Makefile ; then
761 ( cd $dir/input ; make CLEAN )
762 fi
763 continue
764 fi
765
766 # Verify that the testdir exists and contains previous
767 # results in the correct location--or skip this directory!
768 fout=
769 if test "x$ADM" = x ; then
770 fout=$dir"/results/output.txt"
771 else
772 fout=$dir"/results_ad/output.txt_adm"
773 fi
774 if test ! -r $fout ; then
775 echo "can't read \"$fout\" -- skipping $dir"
776 continue
777 fi
778
779 builddir="input"
780 rundir="input"
781 use_seperate_build=0
782 if test -d $dir/build -a -r $dir/build ; then
783 builddir="build"
784 rundir="build"
785 use_seperate_build=1
786 linkdata $use_seperate_build $dir/$rundir
787 fi
788
789 if test "x$ADM" = x ; then
790 code_dir=code
791 CODE_DIR=$dir/code
792 else
793 code_dir=code_ad
794 CODE_DIR=$dir/code_ad
795 fi
796 BUILD_DIR=$dir/$builddir
797
798 if test ! -r $CODE_DIR"/SIZE.h_mpi" -a "x$MPI" = "xt" ; then
799 echo "can't find \"$CODE_DIR/SIZE.h_mpi\" -- skipping $dir"
800 continue
801 fi
802
803 echo "-------------------------------------------------------------------------------"
804 echo
805 echo "Experiment: $dir"
806 echo
807 unset genmake makedepend make run
808 results='-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --'
809
810 # Create an output dir for each OPTFILE/tdir combination
811 rel_CDIR=$DRESULTS"/"$dir
812 mkdir $rel_CDIR
813 CDIR=`pwd`"/$rel_CDIR"
814
815 if test "x$CLEANUP" = xt ; then
816 makeclean $dir/$builddir
817 else
818 genmakemodel $dir/$builddir && genmake=Y \
819 && makeclean $dir/$builddir \
820 && symlink_mpifiles $dir $code_dir $builddir \
821 && makedependmodel $dir/$builddir && makedepend=Y \
822 && makemodel $dir/$builddir && make=Y \
823 && linkdata $use_seperate_build $dir/$rundir \
824 && runmodel $dir/$rundir && run=Y \
825 && results=`testoutput $dir $rundir`
826 fi
827
828 echo
829 if test "x$ADM" = x ; then
830 fres=`formatresults $dir ${genmake:-N} ${makedepend:-N} ${make:-N} ${run:-N} $results`
831 else
832 fres=`printf '%s %s %s %s' ${genmake:-N} ${makedepend:-N} ${make:-N} ${run:-N}`
833 fres=$fres"$results $dir"
834 fi
835 echo
836 echo "$fres" >> $SUMMARY
837 echo "fresults='$fres'" > $CDIR"/summary.txt"
838 echo "MACH='$MACH'" >> $CDIR"/summary.txt"
839 echo "UNAMEA='$UNAMEA'" >> $CDIR"/summary.txt"
840 echo "DATE='$DATE'" >> $CDIR"/summary.txt"
841 echo "tdir='$dir'" >> $CDIR"/summary.txt"
842
843 echo "-------------------------------------------------------------------------------"
844
845 done
846
847 echo -n "Start time: " >> $SUMMARY
848 echo $start_date >> $SUMMARY
849 echo -n "End time: " >> $SUMMARY
850 date >> $SUMMARY
851
852 # If addresses were supplied and mpack built successfully, then try
853 # to send email using mpack.
854 if test "x$ADDRESSES" = xNONE -o "x$ADDRESSES" = x ; then
855 echo "No results email was sent."
856 else
857 if test "x$HAVE_MPACK" = xt ; then
858 tar -cf $DRESULTS".tar" $DRESULTS > /dev/null 2>&1 \
859 && gzip $DRESULTS".tar" \
860 && $MPACK -s MITgcm-test -m 1500000 $DRESULTS".tar.gz" $ADDRESSES
861 RETVAL=$?
862 if test "x$RETVAL" != x0 ; then
863 echo
864 echo "Warning: The tar, gzip, & mpack step failed. Please send email"
865 echo " to <MITgcm-support@mitgcm.org> for help. You may copy the "
866 echo " summary of results from the directory \"$DRESULTS\"."
867 echo
868 else
869 echo
870 echo "An email containing results was sent to the following addresses:"
871 echo " \"$ADDRESSES\""
872 echo
873 fi
874 test -f $DRESULTS".tar" && rm -f $DRESULTS".tar"
875 test -f $DRESULTS".tar.gz" && rm -f $DRESULTS".tar.gz"
876 fi
877 fi
878
879 # rm -f tmp_cmpnum.f a.out
880 rm -f tmp_cmpnum.c tmp_cmpnum
881
882 if test "x$CLEANUP" != xt ; then
883 cat $SUMMARY
884 if test -e tr_out.txt ; then
885 mv tr_out.txt tr_out.txt.old
886 fi
887 cat $SUMMARY > tr_out.txt
888 fi

  ViewVC Help
Powered by ViewVC 1.1.22