|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T d
Length: 1347 (0x543) Types: TextFile Names: »dhry.run«
└─⟦db229ac7e⟧ Bits:30007240 EUUGD20: SSBA 1.2 / AFW Benchmarks └─⟦this⟧ »EUUGD20/AFUU-ssba1.21/ssba1.21F/dhry/dhry.run«
#! /bin/sh # SSBA 1.21F # # Script : dhry.run # b=dhry log=$b.log res=$b.res TIME=../config/chrono echo "kill -9 $$" >$b.kill chmod u+x $b.kill cat $b.kill >> ../ssba/ssba.kill d=`date` echo "DHRYSTONE: BEGIN execution at $d" >$log cat $b.doc >$res loops=`cat dhry.dat` f=dhrynr if [ -f $f ] ; then $TIME ./$f 1>$f.int 2>>$log awk ' /This/ { print $5, "Dhrystones/sec" } ' < $f.int >$f.tmp cat $f.int >>$log echo "$f(sans registres,sans optimisation,$loops iter):\ `cat $f.tmp`" >>$res rm $f.tmp $f.int 2>/dev/null fi f=dhryr if [ -f $f ] ; then $TIME ./$f 1>$f.int 2>>$log awk ' /This/ { print $5, "Dhrystones/sec" } ' < $f.int >$f.tmp cat $f.int >>$log echo "$f(avec registres,sans optimisation,$loops iter):\ `cat $f.tmp`" >>$res rm $f.tmp $f.int 2>/dev/null fi f=dhrynro if [ -f $f ] ; then $TIME ./$f 1>$f.int 2>>$log awk ' /This/ { print $5, "Dhrystones/sec" } ' < $f.int >$f.tmp cat $f.int >>$log echo "$f(sans registres,avec optimisation,$loops iter):\ `cat $f.tmp`" >>$res rm $f.tmp $f.int 2>/dev/null fi f=dhryro if [ -f $f ] ; then $TIME ./$f 1>$f.int 2>>$log awk ' /This/ { print $5, "Dhrystones/sec" } ' < $f.int >$f.tmp cat $f.int >>$log echo "$f(avec registres,avec optimisation,$loops iter):\ `cat $f.tmp`" >>$res rm $f.tmp $f.int 2>/dev/null fi d=`date` echo "DHRYSTONE: END execution at $d" >>$log