X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmatita%2Fscripts%2Fpublic_html%2Fbench.php;h=8ab204537537ce5e2cebfd8c6006c430cbb2262b;hb=aa0d60227b785da3355b31519ba11cb4fbd2c925;hp=2f3fe5da450771e1b6b23950aa6c5b95b562c458;hpb=79d60459ff1ba9efbcc4d196f345a3841630d903;p=helm.git diff --git a/helm/matita/scripts/public_html/bench.php b/helm/matita/scripts/public_html/bench.php index 2f3fe5da4..8ab204537 100644 --- a/helm/matita/scripts/public_html/bench.php +++ b/helm/matita/scripts/public_html/bench.php @@ -7,12 +7,12 @@ // $limits = array("20","50","100"); -$quey_all = urlencode("Whole content:@@@select * from bench***"); +$quey_all = urlencode("Whole content:@@@select * from bench order by mark desc***"); $query_fail = urlencode( - "Number of failures:@@@" . + "Number of failures@@@" . "select mark, count(distinct test) as fail_no from bench where result = 'fail' group by mark order by mark desc***" . "###" . - "Tests failed:@@@" . + "Tests failed@@@" . "select distinct mark, test, result from bench where result = 'fail' order by mark desc***" ); $query_gc = urlencode( @@ -27,9 +27,9 @@ $query_gc = urlencode( ); $query_auto = urlencode( - "Auto (with GC):@@@select mark, SEC_TO_TIME(SUM(TIME_TO_SEC(bench.time))) as time from bench where test='auto.ma' and options = 'gc-on' group by mark order by mark desc***" + "Auto (with GC)@@@select mark, SEC_TO_TIME(SUM(TIME_TO_SEC(bench.time))) as time from bench where test='auto.ma' and options = 'gc-on' group by mark order by mark desc***" . "###" . - "Auto (without GC):@@@select mark, SEC_TO_TIME(SUM(TIME_TO_SEC(bench.time))) as time from bench where test='auto.ma' and options = 'gc-off' group by mark order by mark desc***" + "Auto (without GC)@@@select mark, SEC_TO_TIME(SUM(TIME_TO_SEC(bench.time))) as time from bench where test='auto.ma' and options = 'gc-off' group by mark order by mark desc***" # . "###" . # "GC overhead@@@select bench.mark, SEC_TO_TIME(SUM(TIME_TO_SEC(bench.time)) - SUM(TIME_TO_SEC(bench1.time))) as gc_hoverhead from bench, bench as bench1 where bench.mark = bench1.mark and bench.test = bench1.test and bench.options = 'gc-on' and bench1.options = 'gc-off' and bench.compilation = bench1.compilation and bench.test = 'auto.ma' group by mark" );