/[MITgcm]/MITgcm/verification/testscript
ViewVC logotype

Diff of /MITgcm/verification/testscript

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

revision 1.1 by adcroft, Fri Mar 9 17:56:37 2001 UTC revision 1.9 by adcroft, Mon Aug 6 15:11:03 2001 UTC
# Line 1  Line 1 
1  #!/bin/csh  #!/bin/sh
2    
3  # Run this script from the verification directory  compare_lines()
4  # It will automatically configure, compile, run and verify all experiments  {
5  # in the verification directory for whcih there is an results/output.txt  # use codelet to compare lines
6  # file.   if [ $verbose -gt 1 ]; then
7      cat tmp3.txt 1>&2
8  # This is the number of least-significant digits allows to be   fi
9  # in error before the test is classified as a "fail".   return `./a.out < tmp3.txt`
10    }
11  set passaccuracy=7  
12  printf '%s\t%s\t%s\t%s\t%s\t%s\t%s\n' " " Make " " " " Exact "# of" " " > summary.txt  testoutput_for_prop()
13  printf '%s\t%s\t%s\t%s\t%s\t%s\t%s\n' Config Depend Compile Execute Match Digits experiment >> summary.txt  {
14    # testoutput_for_prop dir s1 label
15  # Pass any arguments  #
16  foreach arg ($argv)  #  compares files in $dir/input/output.txt and $dir/results.output.txt
17   switch ($arg)  #  using search strings s1 and text label
18    case -clean:  
19     echo Cleaning ...   if [ $debug -gt 0 ]; then
20     foreach dr ([a-zA-Z01-9]*)    echo testoutput_for_prop: grep "$2" $1/input/output.txt 1>&2
21      if (-d $dr/input) then   fi
22        echo Entering $dr   if [ -r $1/input/output.txt ]; then
23        cd $dr/input    grep "$2" $1/input/output.txt | sed 's/.*=//' | nl > tmp1.txt
       echo ""  
       make CLEAN  
       \rm -f {*output,*high,*low}.txt *.log  
       \rm -f ?ake*  
       cd ../..  
     endif  
    end  
    rm -f summary.txt  
    exit 0  
   default:  
    echo Unknown argument given to $0  
    exit 1  
  endsw  
 end  
   
 foreach dr ([a-zA-Z01-9]*)  
  if (! -d $dr/input ) continue  
  set config=-  
  set makedepend=-  
  set compile=-  
  set execute=-  
  set exactmatch=-  
  set accuracy=-  
  echo ==============================================================================  
  echo Entering $dr  
  cd $dr  
  echo ""  
  if (! -r results/output.txt) then  
   echo "                ***** No results to compare with *****"  
   if (! $?untested) set untested  
   set untested=($untested $dr)  
24   else   else
25    set config=NO    echo testoutput_for_prop: output.txt from model run was not readable 1>&2
26    set makedepend=NO    return 99
27    set compile=NO   fi
28    set execute=NO   if [ $debug -gt 0 ]; then
29    set exactmatch=NO    echo testoutput_for_prop: grep "$2" $1/results/output.txt 1>&2
30    set accuracy=-   fi
31    cd input   grep "$2" $1/results/output.txt | sed 's/.*=//' | nl > tmp2.txt
32    echo -n "  generating Makefile ..."   if [ $debug -gt 0 ]; then
33    ../../../tools/genmake -mods=../code >&! make.log    echo testoutput_for_prop: join tmp1.txt tmp2.txt 1>&2
34    if ($status == 0) set config=Yes   fi
35    echo " done."   join tmp1.txt tmp2.txt | awk '{print $1 " " $2 " " $3}' > tmp3.txt
36    echo -n "  make depend ..."   if [ $debug -gt 0 ]; then
37    make cleanlinks depend >>& make.log    echo testoutput_for_prop: compare_lines 1>&2
38    if ($status == 0) set makedepend=Yes   fi
39    echo " done."   compare_lines
40    echo -n "  make ..."   digits_of_similarity=$?
41    make >>& make.log   if [ $digits_of_similarity -eq 99 ]; then
42    if ($status) then    if [ $verbose -gt 0 ]; then
43     echo "               ***** An error occurred during make *****"     echo testoutput_for_prop: No comparison was available for \"$2\" 1>&2
44     cat make.log    fi
45     exit 1    digits_of_similarity=99
46    else   else
47     set compile=Yes    if [ $verbose -gt 0 ]; then
48    endif     echo There were $digits_of_similarity decimal places of similarity for \"$2\" 1>&2
49    echo " done."    fi
50    echo -n "  running model ..."   fi
51    ./mitgcmuv | & grep "D iters" > output.txt   rm tmp1.txt tmp2.txt tmp3.txt
52    if ($status == 0) then  
53      set execute=Yes   return $digits_of_similarity
54      echo " done."  }
55      sed 's/.*D iters, err =//' output.txt \  
56      | grep "   0    " \  dashnum()
57      > high.txt  {
58      grep "D iters" ../results/output.txt \  # dashnum n1 n2 n3 ...
59       | sed 's/.*D iters, err =//' \  #
60       | grep "   0    " \  #  print numbers using %3i format or "--" if number = 99
61       > oldhigh.txt  for num in $@
62      diff oldhigh.txt high.txt > /dev/null  do
63      if ($status) then   if [ $num = 99 ]; then
64        echo "  output differs:"    printf ' --'
65        diff oldhigh.txt high.txt   else
66        echo ""    printf '%3i' $num
67        @ lvl=0   fi
68        set accuracy='.'  done
69        set fail  }
70        echo -n Trying reduced accuracy  
71        while ($lvl <= $passaccuracy)  testoutput()
72          @ lvl+=1  {
73          echo -n " " $lvl  # testoutput diretory
74          sed s/{$accuracy}E/E/ high.txt > low.txt  #
75          sed s/{$accuracy}E/E/ oldhigh.txt > oldlow.txt  #  test output in "directory"
76          diff oldlow.txt low.txt > /dev/null  
77          if ($status == 0) then  if [ $debug -gt 0 ]; then
78            unset fail   echo testoutput: testoutput_for_prop $1 cg2d_init_res 1>&2
79            break  fi
80    testoutput_for_prop $1 "cg2d_init_res" "cg2d init. residual"; cg2dres=$?
81    if [ $debug -gt 0 ]; then
82     echo testoutput: cg2dres=$cg2dres 1>&2
83    fi
84    
85    if [ $testmore -gt 0 ]; then
86    testoutput_for_prop $1 "dynstat_theta_min" "theta minimum"; tmin=$?
87    testoutput_for_prop $1 "dynstat_theta_max" "theta maximum"; tmax=$?
88    testoutput_for_prop $1 "dynstat_theta_mean" "theta mean"; tmean=$?
89    testoutput_for_prop $1 "dynstat_theta_sd" "theta s.d."; tsd=$?
90    testoutput_for_prop $1 "dynstat_salt_min" "salt minimum"; smin=$?
91    testoutput_for_prop $1 "dynstat_salt_max" "salt maximum"; smax=$?
92    testoutput_for_prop $1 "dynstat_salt_mean" "salt mean"; smean=$?
93    testoutput_for_prop $1 "dynstat_salt_sd" "salt s.d."; ssd=$?
94    testoutput_for_prop $1 "dynstat_uvel_min" "U minimum"; umin=$?
95    testoutput_for_prop $1 "dynstat_uvel_max" "U maximum"; umax=$?
96    testoutput_for_prop $1 "dynstat_uvel_mean" "U mean"; umean=$?
97    testoutput_for_prop $1 "dynstat_uvel_sd" "U s.d."; usd=$?
98    testoutput_for_prop $1 "dynstat_vvel_min" "V minimum"; vmin=$?
99    testoutput_for_prop $1 "dynstat_vvel_max" "V maximum"; vmax=$?
100    testoutput_for_prop $1 "dynstat_vvel_mean" "V mean"; vmean=$?
101    testoutput_for_prop $1 "dynstat_vvel_sd" "V s.d."; vsd=$?
102    else
103    testoutput_for_prop $1 "dynstat_theta_min" "theta minimum"; tmin=$?
104    testoutput_for_prop $1 "dynstat_theta_max" "theta maximum"; tmax=$?
105    testoutput_for_prop $1 "dynstat_salt_min" "salt minimum"; smin=$?
106    testoutput_for_prop $1 "dynstat_salt_max" "salt maximum"; smax=$?
107    testoutput_for_prop $1 "dynstat_uvel_min" "U minimum"; umin=$?
108    testoutput_for_prop $1 "dynstat_uvel_max" "U maximum"; umax=$?
109    testoutput_for_prop $1 "dynstat_vvel_min" "V minimum"; vmin=$?
110    testoutput_for_prop $1 "dynstat_vvel_max" "V maximum"; vmax=$?
111    fi
112    
113    dashnum $cg2dres $tmin $tmax $tmean $tsd $smin $smax $smean $ssd \
114            $umin $umax $umean $usd $vmin $vmax $vmean $vsd
115    #printf '%3i' $cg2dres $tmin $tmax $tmean $tsd $smin $smax $smean $ssd \
116    #       $umin $umax $umean $usd $vmin $vmax $vmean $vsd
117    }
118    
119    genmakemodel()
120    {
121    # genmakemodel directory
122     ( cd $1;
123       if [ $quick -eq 0 -o ! -r Makefile ]; then
124        printf 'genmake ... ' 1>&2
125        ../../../tools/genmake -ieee -mods=../code > make.log 2>&1
126        if [ $? -ne 0 ]; then
127         tail make.log
128         echo makemodel: genmake failed 1>&2
129         return 1
130        else
131          echo succesful 1>&2
132        fi
133       fi
134     )
135    }
136    
137    makedependmodel()
138    {
139    # makedependmodel directory
140     ( cd $1;
141       if [ $quick -eq 0 -o ! -r Makefile ]; then
142        printf 'make depend ... ' 1>&2
143        make cleanlinks >> make.log 2>&1
144        make depend >> make.log 2>&1
145        if [ $? -ne 0 ]; then
146          tail make.log
147          echo makemodel: make depend failed 1>&2
148          return 1
149        else
150          echo succesful 1>&2
151        fi
152       fi
153     )
154    }
155    
156    makemodel()
157    {
158    # makemodel directory
159     ( cd $1;
160       if [ -r Makefile ]; then
161        printf 'make ... ' 1>&2
162        make >> make.log 2>&1
163        if [ $? -ne 0 ]; then
164         tail make.log
165         echo failed 1>&2
166         return 1
167        else
168         echo succesful 1>&2
169        fi
170       fi
171     )
172    }
173    
174    runmodel()
175    {
176    # runmodel directory exe
177    #
178    #  runs the model "exe" in "directory" (exe is relative to directory)
179    
180     ( cd $1
181       if [ -x $2 ]; then
182        if [ ! -r output.txt -o $quick -eq 0 ]; then
183         echo runmodel: running... 1>&2
184         ( ./$2 > output.txt 2>&1 ) && return 0
185         return 1
186        else
187         echo runmodel: output.txt is newer than executable 1>&2
188         return 0
189        fi
190       else
191        echo runmodel: executable \"$1/$2\" is missing 1>&2
192        return 1
193       fi
194     )
195    }
196    
197    createcodelet()
198    {
199    # create codelet for comparing model output
200    cat > tmp_cmpnum.f <<EOFA
201          program cmpnum
202          implicit none
203          real*8 a,b,diff
204          integer linnum,best
205          best=-16
206      99  read(*,*,end=70,err=60) linnum,a,b
207          diff=0.5*(abs(a)+abs(b))
208    c     print *,a,b,diff,abs(a-b)/diff
209          if (diff.gt.1.e-12) then
210            diff=abs(a-b)/diff
211            if (diff.gt.0.) then
212    c         print *,int(log10(diff)),diff
213              linnum=int(log10(diff))
214              best=max(best,linnum)
215          endif          endif
         set accuracy=`echo $accuracy | sed 's/\./../'`  
       end  
       echo ""  
       if ($?fail ) then  
         if (! $?fails) set fails  
         set fails=($fails $dr)  
         echo "                        ***** FAIL *****"  
216        else        else
217          if (! $?passes) set passes          if (best.eq.-16.and.diff.ne.0.) best=-22
         set passes=($passes $dr)  
         echo ""  
         echo "                   ***** PASS (grade $lvl) *****"  
218        endif        endif
219        set accuracy=$lvl        goto 99
220      else    60  stop 'cmpnum: An error occured reading a,b'
221        set exactmatch=Yes    70  print *,-best
222        echo ""        end
223        echo Model passed at highest accuracy.  EOFA
224        echo ""  f77 tmp_cmpnum.f
225        echo "                        ***** PASS *****"  if [ -x ./a.out ]; then
226        if (! $?passes) set passes   return 0
227        set passes=($passes $dr)  else
228      endif   echo createcodelet: failed to compile codelet 1>&2
229     exit 1
230    fi
231    }
232    
233    formatresults()
234    {
235    # formatresults expt genmake depend make run results*
236    
237     nm=$1
238     printf '%s %s %s %s' $2 $3 $4 $5
239     shift; shift; shift; shift; shift;
240     printf '%3s' $@
241    
242     if [ $1 = '--' ]; then
243      printf ' N/O '
244     else
245      if [ $1 -gt 12 ]; then
246       printf ' pass'
247    else    else
248      echo " error"     printf ' FAIL'
249      echo "               ***** An error occured running the mode *****"    fi
250      tail output.txt   fi
251      exit 1   printf '  %s' $nm
252    endif   printf '\n'
253    cd ..  
254   endif  }
255   echo ""  
256   cd ..  show_help()
257  # Pretty summary  {
258   printf '  %s\t  %s\t  %s\t  %s\t  %s\t  %s\t%s\n' $config $makedepend $compile $execute $exactmatch $accuracy $dr >> summary.txt  cat - << EOF
259  end  $0 [-help] [-quick] [-verbose] dir1 [dir2] [...]
260  echo ==============================================================================   -help      Show this help message
261  echo ""   -quick     Skip "genmake" and "make depend" if the Makefile exists
262     -quiet     Reduce the amount of output
263     -verbose   Produce copious amounts of output
264    
265    Normal usage:
266     $0 *       Configure, compile, run and analyze in all experiment directories
267    EOF
268    }
269    
270    ###############################################################################
271    
272    # Main function
273    
274    # Default properties
275    debug=0
276    verbose=1
277    quick=0
278    testmore=0
279    expts=''
280    
281    # Process arguments
282    for arg in $@
283    do
284     case $arg in
285       -quick) quick=1;;
286       -verbose) verbose=2;;
287       -debug) debug=1;;
288       -testmore) testmore=1;;
289       -quiet) verbose=0;;
290       -help) show_help; exit 0;;
291       *) test -d $arg && expts=`echo $expts $arg`;;
292     esac
293    done
294    
295    if [ ${#expts} -eq 0 ]; then
296     echo Scanning all directories
297     for arg in *
298      do
299       test -d $arg && expts=`echo $expts $arg`
300     done
301    fi
302    
303    createcodelet
304    
305    if [ $testmore -gt 0 ]; then
306    cat << EOF > summary.txt
307                    T           S           U           V
308    C D M    c        m  s        m  s        m  s        m  s
309    n p a R  g  m  m  e  .  m  m  e  .  m  m  e  .  m  m  e  .
310    f n k u  2  i  a  a  d  i  a  a  d  i  a  a  d  i  a  a  d
311    g d e n  d  n  x  n  .  n  x  n  .  n  x  n  .  n  x  n  .
312    
313    EOF
314    else
315    cat << EOF > summary.txt
316                  T     S     U     V
317    C D M    c                        
318    n p a R  g  m  m  m  m  m  m  m  m
319    f n k u  2  i  a  i  a  i  a  i  a
320    g d e n  d  n  x  n  x  n  x  n  x
321    
322    EOF
323    fi
324    
325    # Now configue, make, run and test in each directory
326    for dir in $expts
327    do
328     if [ -r $dir/results/output.txt ]; then
329     echo -------------------------------------------------------------------------------
330     echo
331     echo Experiment: $dir
332     echo
333     unset genmake makedepend make run
334     results='-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --'
335     results='-- -- -- -- -- -- -- -- --'
336     genmakemodel $dir/input && genmake=Y \
337     && makedependmodel $dir/input && makedepend=Y \
338     && makemodel $dir/input && make=Y \
339     && runmodel $dir/input mitgcmuv && run=Y \
340     && results=`testoutput $dir`
341     echo
342     formatresults $dir ${genmake:-N} ${makedepend:-N} ${make:-N} ${run:-N} $results
343     echo
344     formatresults $dir ${genmake:-N} ${makedepend:-N} ${make:-N} ${run:-N} $results >> summary.txt
345     fi
346    done
347    
348    rm tmp_cmpnum.f a.out
349    
350  echo "Summary:"  echo -------------------------------------------------------------------------------
351  echo ""  echo
352  cat summary.txt  cat summary.txt

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.9

  ViewVC Help
Powered by ViewVC 1.1.22