/[MITgcm]/mitgcm.org/front_content/make_summary
ViewVC logotype

Contents of /mitgcm.org/front_content/make_summary

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


Revision 1.65 - (show annotations) (download)
Fri Nov 19 04:41:18 2010 UTC (13 years, 5 months ago) by jmc
Branch: MAIN
Changes since 1.64: +2 -2 lines
add "stomp" to list of known platform.

1 #! /usr/bin/env bash
2
3 # $Header: /u/gcmpack/mitgcm.org/front_content/make_summary,v 1.64 2010/10/29 20:18:23 jmc Exp $
4 #
5 # The purpose of this script is to create HTML summaries of the
6 # directories produced by the "parse_emails" script.
7
8
9 usage()
10 {
11 echo
12 echo "Usage: $0 [OPTIONS]"
13 echo
14 echo "where possible OPTIONS are:"
15 echo " (-help|-h) print usage"
16 echo " (-date |-d )PERIOD run for PERIOD=\"YYYY_MM\""
17 echo " [def=\"$PERIOD\"]"
18 echo
19 exit 1
20 }
21
22 export LC_ALL="en_US.UTF-8"
23 CURR_PER=`date +%Y`"_"`date +%m`
24 # defaults
25 PERIOD=$CURR_PER
26
27 # Parse options
28 ac_prev=
29 for ac_option ; do
30
31 # If the previous option needs an argument, assign it.
32 if test -n "$ac_prev"; then
33 eval "$ac_prev=\$ac_option"
34 ac_prev=
35 continue
36 fi
37
38 ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
39
40 case $ac_option in
41
42 -help | --help | -h | --h)
43 usage ;;
44
45 -date | --date | -d | --d)
46 ac_prev=PERIOD ;;
47 --date=* | -date=*)
48 PERIOD=$ac_optarg ;;
49
50 *)
51 echo "Error: don't understand argument \"$ac_option\""
52 usage
53 ;;
54
55 esac
56
57 done
58
59 #INDIR="/net/orwell/export/export-9/mitgcm-testing/results/$PERIOD"
60 #OUTDIR="/home/jmc/mitgcm/test_web/summary"
61 INDIR="/u/u0/httpd/html/testing/results/$PERIOD"
62 OUTDIR="/u/u0/httpd/html/testing/summary"
63
64 OUTFILE=$OUTDIR"/output_"$PERIOD".html"
65 res_url="http://mitgcm.org/testing/"
66
67 # Create the links in $OUTFILE :
68 echo "Creating the \"latest\" file for each machine: "
69 the_date=`date`
70
71 sed "s/_PERIOD/$PERIOD/" summary_head > $OUTFILE
72 cat <<EOF >>$OUTFILE
73 <table align="center" cellpadding="0" cellspacing="0" border="0" width="95%">
74 <tr bgcolor="#00cccc">
75 <td height="0"> <b>Nickname</b> </td>
76 <td> <b>OPTFILE Name</b> </td>
77 <td> <b>Type</b> </td>
78 <td> <b>Date</b> </td>
79 <td> <b>Summary</b> </td>
80 <td> <b>Ratio</b> </td>
81 </tr>
82
83 EOF
84
85 color="#bbffdd"
86 ncolor="#bbddff"
87
88 MACHINES="faulks meander aces baudelaire dickens danton beagle harbor"
89 MACHINES="$MACHINES pleiades iblade rays solasrv sx8"
90 MACHINES="$MACHINES trane dodongo dokdo stomp bigred"
91
92 ( cd $INDIR ; ls -1 -t */summary.txt | sed 's/\/summary.txt//' ) > ./dir_all
93
94 MALL=`cat ./dir_all | sed -e 's|_| |g' | awk '{print $2}' | sort | uniq`
95 for madd in $MALL ; do
96 present=0
97 for m in $MACHINES ; do
98 echo $madd | grep $m > /dev/null 2>&1
99 RETVAL=$?
100 test $RETVAL = 0 && present=1
101 continue
102 done
103 test $present = 0 && MACHINES="$MACHINES $madd"
104 done
105 #MACHINES="faulks"
106
107 for mname in $MACHINES ; do
108
109 echo " $mname"
110
111 dir_list=`grep $mname ./dir_all`
112 echo -n "" > ./mlist
113
114 for i in $dir_list ; do
115
116 dir=$INDIR"/"$i
117 OPTFILE=
118 if test -r $dir/summary.txt ; then
119 comm=`grep 'OPTFILE=' $dir/summary.txt`
120 eval $comm
121 OPTFILE=${OPTFILE##*/}
122 fi
123 if test "x$OPTFILE" = x -a -r "$dir/genmake_state" ; then
124 comm=`grep 'OPTFILE=' $dir/genmake_state 2>/dev/null`
125 eval $comm
126 OPTFILE=${OPTFILE##*/}
127 fi
128 if test "x$OPTFILE" = x ; then
129 comm=`grep '^# OPTFILE=' $dir/*/Makefile* 2>/dev/null | head -1`
130 comm=${comm##*#}
131 eval $comm
132 OPTFILE=${OPTFILE##*/}
133 fi
134 if test "x$OPTFILE" = x ; then
135 OPTFILE="not_explicitly_specified"
136 fi
137
138 ADJOINT=
139 RESTART=0
140 NOI3E=0
141 MTH=0
142 UR4=0
143 if test -r $dir/summary.txt ; then
144 comm=`grep 'ADJOINT=true' $dir/summary.txt 2>/dev/null`
145 eval $comm
146 RESTART=`grep -c 'test 2+2=4 summary' $dir/summary.txt`
147 NOI3E=`grep -c "^run: .*testreport.* '*-noieee'*" $dir/summary.txt`
148 MTH=`grep -c "^run: .*testreport.* -mth " $dir/summary.txt`
149 UR4=`grep -c "^run: .*testreport.* -use_r4 " $dir/summary.txt`
150 if test "x$UR4" = x0 ; then
151 UR4=`grep -c "^run: .*testreport.* -ur4 " $dir/summary.txt`
152 fi
153 fi
154 if test "x$RESTART" = x0 ; then
155 kind="forward"
156 test "x$ADJOINT" = xtrue && kind="adjoint"
157 else
158 kind="restart"
159 fi
160 if test "x$UR4" = x1 ; then
161 OPTFILE="${OPTFILE}.use_r4"
162 fi
163 if test "x$MTH" = x1 ; then
164 yy=`echo $OPTFILE | grep -c '+mth$'`
165 if test $yy = 0 ; then OPTFILE="${OPTFILE}+mth" ; fi
166 fi
167 if test "x$NOI3E" = x1 ; then
168 OPTFILE="${OPTFILE}.noieee"
169 fi
170
171 t_pass="--"
172 t_tot="--"
173 if test -r $dir/summary.txt ; then
174 grep '^[YN] [YN] [YN] [YN]' $dir/summary.txt > ./all_tests 2>/dev/null
175 t_tot=`cat ./all_tests | wc -l | sed -e 's| ||g'`
176 t_pass=`grep '^Y Y Y Y' ./all_tests | grep 'pass ' | wc -l | sed -e 's| ||g'`
177 fi
178 rm -f ./all_tests
179 # echo "${dir##*/} : $t_pass out of $t_tot"
180
181 tokens=`echo $i | sed -e 's|_| |g'`
182 echo "" > ./ms_tmp
183 for tok in $tokens ; do
184 echo $tok >> ./ms_tmp
185 done
186 DAY=`cat ./ms_tmp | awk '(length($1)==8 && substr($1,0,2)=="20")'`
187 rm -f ./ms_tmp
188
189 echo "$OPTFILE$kind $DAY $OPTFILE $kind $i $t_pass:$t_tot" >> ./mlist
190
191 done
192
193 # helpful for debugging
194 # cat ./mlist
195
196 # Do we have any data? If so, create the latest pointer.
197 num=`wc -l ./mlist | awk '{print $1}'`
198 if test $num -gt 0 ; then
199
200 # swap colors
201 ctmp=$color
202 color=$ncolor
203 ncolor=$ctmp
204
205 keys=`cat ./mlist | cut -d " " -f 1 | sort | uniq`
206
207 for key in $keys ; do
208 tline=`grep "^$key " ./mlist | head -1`
209 ratio=`echo $tline | cut -d " " -f 6`
210 ldir=`echo $tline | cut -d " " -f 5`
211 kind=`echo $tline | cut -d " " -f 4`
212 optf=`echo $tline | cut -d " " -f 3`
213 DAY=`echo $tline | cut -d " " -f 2`
214 URL="results/$PERIOD/$ldir"
215 cat <<EOF >>$OUTFILE
216 <tr bgcolor="$color">
217 <td height="0"> $mname </td>
218 <td> $optf </td>
219 <td> $kind </td>
220 <td> <a href="$res_url$URL">$DAY</a> </td>
221 <td> <a href="$res_url$URL/summary.txt"> summary.txt </a> </td>
222 <td> $ratio </td>
223 </tr>
224 EOF
225 done
226 fi
227
228 done
229
230 cat >> $OUTFILE << EOF
231 <tr bgcolor="#00cccc">
232 <td height="0" colspan="6" align="center" >This table generated on: $the_date</td>
233 </tr>
234
235 </table>
236
237 <p>Examples of the scripts used for these testing runs can be obtained from: <a
238 href="http://mitgcm.org/viewvc/MITgcm/MITgcm/tools/example_scripts/">
239 MITgcm/tools/example_scripts</a>.</p>
240
241
242 </body>
243 </html>
244
245 EOF
246
247 rm -f ./dir_all ./mlist
248
249 #- put the file in place
250 chgrp gcmpack $OUTFILE
251 chmod 664 $OUTFILE
252 LATEST=$OUTDIR"/latest_"$PERIOD".html"
253 mv -f $OUTFILE $LATEST
254
255 if test "x$PERIOD" = "x$CURR_PER" ; then
256 cp $LATEST ./testing.xml
257 (
258 cd $OUTDIR
259 rm -f latest.html
260 ln -s $LATEST latest.html
261 )
262 fi

  ViewVC Help
Powered by ViewVC 1.1.22