/[MITgcm]/MITgcm/tools/example_scripts/csail/test_baudelaire
ViewVC logotype

Contents of /MITgcm/tools/example_scripts/csail/test_baudelaire

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


Revision 1.14 - (show annotations) (download)
Sat Oct 27 23:29:58 2012 UTC (11 years, 6 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint64a
Changes since 1.13: +4 -1 lines
improve cleaning

1 #! /usr/bin/env bash
2
3 # $Header: /u/gcmpack/MITgcm/tools/example_scripts/csail/test_baudelaire,v 1.13 2012/08/26 18:03:10 jmc Exp $
4
5 # Test script for MITgcm that should work on most of the csail.mit.edu
6 # Linux machines.
7
8 # defaults
9 #export PATH="$PATH:/usr/local/bin"
10 if [ -d ~/bin ]; then export PATH=$PATH:~/bin ; fi
11 #- to get case insensitive "ls" (and order of tested experiments)
12 export LC_ALL="en_US.UTF-8"
13 # Turn off stack limit for FIZHI & AD-tests
14 ulimit -s unlimited
15 # MPI test (for now, only with gfortran)
16 export MPI_GCC_DIR=/srv/software/gcc/gcc-packages/gcc-4.4.5/mpich2/mpich2-1.3
17 export MPI_INC_DIR=$MPI_GCC_DIR/include
18 export PATH="$PATH:$MPI_GCC_DIR/bin"
19
20 #- method to acces CVS:
21 # export CVSROOT='/u/gcmpack'
22 # export CVSROOT=':ext:@mitgcm.org:/u/gcmpack'
23 # export CVS_RSH='ssh' ; cvs co -P MITgcm > /dev/null
24 # cvs -d :pserver:cvsanon@mitgcm.org:/u/gcmpack co -P MITgcm > /dev/null
25 cmdCVS='cvs -d :pserver:cvsanon@mitgcm.org:/u/gcmpack'
26 cmdCVS='cvs -d /u/gcmpack'
27
28 dInWeek=`date +%a`
29 TESTDIR="/scratch/jmc/test_"`hostname -s`
30 MC=13
31 checkOut=1
32 sepDir=1
33 option=
34 tst_list='g7a adm mpa g77 gfo+rs mth mp2+rs mpi ifc'
35 if test "x$dInWeek" = xSun ; then tst_list="$tst_list tlm" ; fi
36 #tst_list='g77 adm gfo ifc mth pgi+rs'
37 #tst_list='adm gfo+rs mth'
38
39 #option="-nc" ; checkOut=0
40 #option="-q" ; checkOut=0
41
42 TODAY=`date +%d`
43 tdir=$TESTDIR
44 if test $checkOut = '0' ; then
45 if test -e $tdir/MITgcm/CVS ; then
46 echo $tdir/MITgcm/CVS 'exist'
47 echo -n "Update the MITgcm code using: $cmdCVS ..."
48 cd $tdir/MITgcm
49 if test $sepDir = 1 ; then
50 $cmdCVS update -P -d > /dev/null
51 else
52 $cmdCVS update -P -d
53 fi
54 echo " done"
55 else
56 echo -n $tdir/MITgcm 'missing ; '
57 checkOut=1
58 fi
59 fi
60 if test $checkOut = '1' ; then
61 if test -e $tdir ; then
62 echo -n "Removing working copy: $tdir/MITgcm ..."
63 test -e $tdir/MITgcm && rm -rf $tdir/MITgcm
64 else
65 echo -n "Creating a working dir: $tdir ..."
66 mkdir $tdir
67 fi
68 echo " done"
69 echo -n "Downloading the MITgcm code using: $cmdCVS ..."
70 cd $tdir
71 $cmdCVS co -P MITgcm > /dev/null
72 echo " done"
73 else
74 cd $tdir
75 fi
76
77 #------------------------------------------------------------------------
78
79 firstTst=`echo $tst_list | awk '{print $1}'`
80 last_Tst=`echo $tst_list | awk '{print $NF}'`
81 for tt in $tst_list
82 do
83
84 echo "================================================================"
85 typ=`echo $tt | sed 's/+rs//'`
86 #- check day and time:
87 curDay=`date +%d` ; curHour=`date +%H`
88 if [ $curDay -ne $TODAY ] ; then
89 date ; echo "day is over => skip test $typ"
90 continue
91 fi
92 if [ $curHour -ge 18 ] ; then
93 date ; echo "too late to run test $typ"
94 continue
95 fi
96 #- clean-up old output files
97 rm -f $tdir/output_${typ}*
98 touch $tdir/output_$tt
99 if test $sepDir = 1 ; then
100 new_dir="MITgcm_$typ"
101 if test -d $new_dir/CVS -a $checkOut = '0' ; then
102 pushd $new_dir
103 if test $tt != $typ ; then
104 ( cd verification ; ../tools/do_tst_2+2 -clean )
105 fi
106 echo -n "Update the MITgcm code using: $cmdCVS ..."
107 $cmdCVS update -P -d
108 echo " done"
109 else
110 test -e $new_dir && rm -rf $new_dir
111 mkdir $new_dir
112 pushd $new_dir
113 cp -ra ../MITgcm/* .
114 fi
115 else
116 pushd MITgcm
117 fi
118 cd verification
119
120 #-- set the testreport command:
121 comm="./testreport"
122 if test $typ = 'g7a' -o $typ = 'adm' -o $typ = 'mpa' ; then
123 comm="$comm -adm"
124 elif test $typ = 'tlm' ; then
125 comm="$comm -tlm"
126 elif test $typ = 'mth' -o $typ = 'mp2' ; then
127 export GOMP_STACKSIZE=400m
128 export OMP_NUM_THREADS=2
129 comm="$comm -mth"
130 fi
131 comm="$comm -a jmc@mitgcm.org"
132 #-- set the optfile (+ mpi & match-precision)
133 MPI=0
134 case $typ in
135 'g77'|'g7a') OPTFILE='../tools/build_options/linux_amd64_g77' ;;
136 'gfo'|'adm'|'tlm'|'mth') comm="$comm -match $MC -devel"
137 OPTFILE='../tools/build_options/linux_amd64_gfortran' ;;
138 'ifc') OPTFILE='../tools/build_options/linux_amd64_ifort11' ;;
139 'pgi') OPTFILE='../tools/build_options/linux_amd64_pgf77' ;;
140 'mpa'|'mpi'|'mp2') comm="$comm -match $MC -devel" ; MPI=6
141 OPTFILE='../tools/build_options/linux_amd64_gfortran' ;;
142 *) OPTFILE= ;;
143 esac
144 #-- set MPI command:
145 if test $MPI != 0 ; then
146 if test $typ = 'mp2' ; then MPI=3 ; fi
147 if test $typ = 'mpa' ; then
148 EXE="mpirun -np TR_NPROC ./mitgcmuv_ad"
149 else
150 EXE="mpirun -np TR_NPROC ./mitgcmuv"
151 fi
152 fi
153
154 #-- set specific Env Vars:
155 if test $typ = 'ifc' ; then
156 source /srv/software/intel/intel-11.1.073/bin/ifortvars.sh intel64
157 fi
158 if test $typ = 'pgi' ; then
159 #listT='fizhi-cs-32x32x40 fizhi-cs-aqualev20'
160 export PGI=/srv/software/pgi/pgi-10.9
161 export PATH="$PATH:$PGI/linux86-64/10.9/bin"
162 export LM_LICENSE_FILE=$PGI/license.dat
163 fi
164
165 if test $sepDir = 0 -a $checkOut = '1' -a $tt = $firstTst ; then
166 #-- cleaning:
167 echo "======================"
168 echo "Cleaning test directories:" | tee -a $tdir/output_$tt
169 cmdCLN="./testreport -clean"
170 echo " clean dir running: $cmdCLN" | tee -a $tdir/output_$tt
171 $cmdCLN >> $tdir/output_$tt 2>&1
172 echo "======================"
173 echo "" | tee -a $tdir/output_$tt
174 fi
175
176 #-- run the testreport command:
177 echo -n "Running testreport using:" | tee -a $tdir/output_$tt
178 if test "x$OPTFILE" != x ; then
179 comm="$comm -of=$OPTFILE"
180 fi
181 if test $MPI = 0 ; then echo '' | tee -a $tdir/output_$tt
182 else echo " (EXE='$EXE')" | tee -a $tdir/output_$tt
183 comm="$comm -MPI $MPI -command \"\$EXE\""
184 fi
185 if test "x$option" != x ; then comm="$comm $option" ; fi
186 #if test $typ = 'pgi' ; then comm="$comm -t \"\$listT\"" ; fi
187 echo " \"eval $comm\"" | tee -a $tdir/output_$tt
188 echo "======================"
189 eval $comm >> $tdir/output_$tt 2>&1
190 sed -n "/^An email /,/^======== End of testreport / p" $tdir/output_$tt
191 echo "" | tee -a $tdir/output_$tt
192
193 #-- also test restart (test 2+2=4)
194 if test $tt != $typ
195 then
196 echo "testing restart using:" | tee -a $tdir/output_$tt
197 comm="../tools/do_tst_2+2 -a jmc@mitgcm.org"
198 if test $MPI = 0 ; then
199 echo " \"$comm\"" | tee -a $tdir/output_$tt
200 echo "======================"
201 $comm >> $tdir/output_$tt 2>&1
202 else
203 echo " \"$comm -mpi -exe $EXE\"" | tee -a $tdir/output_$tt
204 echo "======================"
205 $comm -mpi -exe "$EXE" >> $tdir/output_$tt 2>&1
206 fi
207 echo ; cat tst_2+2_out.txt
208 echo
209 fi
210 export OMP_NUM_THREADS=1
211
212 if test $sepDir = 0 ; then
213 #-- cleaning:
214 echo "======================"
215 echo "Cleaning test directories:" | tee -a $tdir/output_$tt
216 if test $tt != $typ ; then
217 cmdCLN="../tools/do_tst_2+2 -clean"
218 echo " clean tst_2+2 running: $cmdCLN" | tee -a $tdir/output_$tt
219 $cmdCLN >> $tdir/output_$tt 2>&1
220 fi
221 if test $tt != $last_Tst ; then
222 cmdCLN="./testreport -clean"
223 echo " clean dir running: $cmdCLN" | tee -a $tdir/output_$tt
224 $cmdCLN >> $tdir/output_$tt 2>&1
225 fi
226 echo "======================"
227 echo
228 fi
229 popd
230
231 done

  ViewVC Help
Powered by ViewVC 1.1.22