]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/scripts/public_html/bench.php
added query
[helm.git] / helm / matita / scripts / public_html / bench.php
index 656569a1ed9cf02fff5b36e737c75fdfb49325a3..015e7c4c14e3749c2745ecf5383b05b521d8da01 100644 (file)
@@ -33,6 +33,8 @@ $query_auto = urlencode(
   "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;"
 );
 
+$query_csc = urlencode("Performances (byte and GC) per mark@@@select mark, SEC_TO_TIME(SUM(TIME_TO_SEC(time))) as sum_time, SEC_TO_TIME(SUM(TIME_TO_SEC(timeuser))) as sum_timeuser from bench where options = 'gc-on' and compilation = 'byte'group by mark;");
+
 ?>
 
 <html>
@@ -47,6 +49,7 @@ $query_auto = urlencode(
       <li><a href="showquery.php?query=<? echo $query_fail; ?>">Broken tests</a></li>
       <li><a href="showquery.php?query=<? echo $query_gc; ?>">Garbage collector killer</a></li>
       <li><a href="showquery.php?query=<? echo $query_auto; ?>">Auto performances</a></li>
+      <li><a href="showquery.php?query=<? echo $query_csc; ?>">Global performances</a></li>
       <li><a href="showquery.php?query=<? echo $quey_all; ?>">All table contents</a></li>
       </ul>
     </p>