]> matita.cs.unibo.it Git - helm.git/commitdiff
mah...
authorEnrico Tassi <enrico.tassi@inria.fr>
Wed, 11 Jan 2006 15:22:36 +0000 (15:22 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Wed, 11 Jan 2006 15:22:36 +0000 (15:22 +0000)
helm/matita/scripts/public_html/bench.php
helm/matita/scripts/public_html/common.php

index d19c3ece15c8d2b8fe7a6d4197cdd445ced7a4d8..2ee5408257b42e1fb11aa1ac20505deac8a0e501 100644 (file)
@@ -34,10 +34,10 @@ $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 bench.mark as date,bench_svn.revision as revision, SEC_TO_TIME(SUM(TIME_TO_SEC(bench.time))) as sum_time, SEC_TO_TIME(SUM(TIME_TO_SEC(bench.timeuser))) as sum_timeuser from bench, bench_svn where bench.options = 'gc-on' and bench.compilation = 'byte' and bench_svn.mark = bench.mark group by bench.mark order by bench.mark desc"
+$query_csc = urlencode("Performances (byte and GC) per mark@@@select bench.mark ,bench_svn.revision as revision, SEC_TO_TIME(SUM(TIME_TO_SEC(bench.time))) as sum_time, SEC_TO_TIME(SUM(TIME_TO_SEC(bench.timeuser))) as sum_timeuser from bench, bench_svn where bench.options = 'gc-on' and bench.compilation = 'byte' and bench_svn.mark = bench.mark group by bench.mark order by bench.mark desc"
 );
 
-$query_csc_opt = urlencode("Performances (opt and GC) per mark@@@select bench.mark as date,bench_svn.revision as revision, SEC_TO_TIME(SUM(TIME_TO_SEC(bench.time))) as sum_time, SEC_TO_TIME(SUM(TIME_TO_SEC(bench.timeuser))) as sum_timeuser from bench, bench_svn where bench.options = 'gc-on' and bench.compilation = 'opt' and bench_svn.mark = bench.mark group by bench.mark order by bench.mark desc"
+$query_csc_opt = urlencode("Performances (opt and GC) per mark@@@select bench.mark,bench_svn.revision as revision, SEC_TO_TIME(SUM(TIME_TO_SEC(bench.time))) as sum_time, SEC_TO_TIME(SUM(TIME_TO_SEC(bench.timeuser))) as sum_timeuser from bench, bench_svn where bench.options = 'gc-on' and bench.compilation = 'opt' and bench_svn.mark = bench.mark group by bench.mark order by bench.mark desc"
 );
 
 $query_total = urlencode(
index e1bef4dd71599bd3385a8ab28749f239f062d358..f2a9be030ea5e26c36788fa13b2bbbd8c9945baa 100644 (file)
@@ -5,7 +5,7 @@ function query($q) {
   mysql_select_db("matita");
   if (preg_match("/TIME_TO_SEC/",$q)) {
     $group_by = true;
-    $q = preg_replace("/group by mark/","",$q);
+    $q = preg_replace("/group by bench.mark/","",$q);
     $q = preg_replace("/SEC_TO_TIME\(SUM\(TIME_TO_SEC\(([^)]+)\)\)\)/","$1",$q);
   }
   $rc = mysql_query($q,$db);