]> matita.cs.unibo.it Git - helm.git/commitdiff
bench
authorEnrico Tassi <enrico.tassi@inria.fr>
Wed, 21 Dec 2005 14:32:37 +0000 (14:32 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Wed, 21 Dec 2005 14:32:37 +0000 (14:32 +0000)
helm/matita/scripts/public_html/bench.php

index 49bfe6235c74c0621494013a9021d15455b8ff39..8db85a1479e323f08f6ea84593ef1a061ca21275 100644 (file)
@@ -37,6 +37,8 @@ $query_csc = urlencode("Performances (byte and GC) per mark@@@select mark, SEC_T
 
 $query_csc_opt = urlencode("Performances (opt 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 = 'opt'group by mark order by mark desc;");
 
+$query_total = urlencode("Number of compiled tests@@@select mark, COUNT(DISTINCT test) as N from bench group by mark order by mark desc;");
+
 ?>
 
 <html>
@@ -53,6 +55,7 @@ $query_csc_opt = urlencode("Performances (opt and GC) per mark@@@select mark, SE
       <li><a href="showquery.php?query=<? echo $query_auto; ?>">Auto performances</a></li>
       <li><a href="showquery.php?query=<? echo $query_csc; ?>">Global performances (bytecode)</a></li>
       <li><a href="showquery.php?query=<? echo $query_csc_opt; ?>">Global performances (nativecode)</a></li>
+      <li><a href="showquery.php?query=<? echo $quey_total; ?>">Number of compiled tests</a></li>
       <li><a href="showquery.php?query=<? echo $quey_all; ?>">All table contents</a></li>
       </ul>
     </p>