X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmatita%2Fscripts%2Fpublic_html%2Fbench.php;h=dc57bab6daf0ca396dc6a2414040bdd413bedeb8;hb=3d376438e698dad45bdf9ea26358dc0a19933813;hp=333983e3b32bd7086f6cca3ad73f05afc3b96c42;hpb=bef16f9275581bd419fd633892c232c72a97a42e;p=helm.git diff --git a/helm/matita/scripts/public_html/bench.php b/helm/matita/scripts/public_html/bench.php index 333983e3b..dc57bab6d 100644 --- a/helm/matita/scripts/public_html/bench.php +++ b/helm/matita/scripts/public_html/bench.php @@ -5,31 +5,31 @@ // queries ::= query | query "###" queries // query ::= name "@@@" sql // -$limits = array("20","50","100","-1"); +$limits = array("20","50","100"); -$quey_all = urlencode("Whole content:@@@select * from bench"); +$quey_all = urlencode("Whole content:@@@select * from bench***"); $query_fail = urlencode( - "Number of failures:@@@" . - "select mark, count(distinct test) as fail_no from bench where result = 'fail' group by mark order by mark desc" + "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:@@@" . - "select distinct mark, test, result from bench where result = 'fail' order by mark desc" + "Tests failed@@@" . + "select distinct mark, test, result from bench where result = 'fail' order by mark desc***" ); $query_gc = urlencode( "GC usage @@@" . - "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 group by mark" + "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 group by mark***" . "###" . "GC usage (opt)@@@" . - "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.compilation = 'opt' group by mark" + "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.compilation = 'opt' group by mark***" . "###" . "GC usage (byte)@@@" . - "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.compilation = 'byte' group by mark" + "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.compilation = 'byte' group by mark***" ); $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" ); @@ -42,9 +42,9 @@ $query_csc_opt = urlencode("Performances (opt and GC) per mark@@@select mark, SE $query_total = urlencode( -"Max N@@@select MAX(col) from tab where col = (select COUNT(DISTINCT test) from bench group by mark order by mark desc)" +"Max N@@@select COUNT(DISTINCT test) as MAX from bench group by mark order by MAX desc LIMIT 0,1;" . "###" . - "Number of compiled tests@@@select mark, COUNT(DISTINCT test) as N from bench group by mark order by mark desc" + "Number of compiled tests@@@select mark, COUNT(DISTINCT test) as N from bench group by mark order by mark desc***" ); function minus1_to_all($s){ @@ -55,11 +55,18 @@ function minus1_to_all($s){ } function links_of($name,$q,$limits){ - echo "
  • $name "; - foreach($limits as $l) { - $q1 = str_replace(urlencode("***"), " LIMIT 0,$l;", $q); - echo "" . - minus1_to_all($l) . " "; + echo "
  • $name :   "; + if (strpos($q, urlencode("***")) === false) { + echo "all"; + } else { + foreach($limits as $l) { + $q1 = str_replace(urlencode("***"), " LIMIT 0,$l", $q); + echo "" . + minus1_to_all($l) . "  "; + } + $q1 = str_replace(urlencode("***"), " LIMIT 0,-1", $q); + echo "" . + minus1_to_all("-1") . "  "; } echo "
  • "; } @@ -132,7 +139,7 @@ function links_of($name,$q,$limits){ - +