]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/scripts/public_html/bench.php
fix
[helm.git] / helm / matita / scripts / public_html / bench.php
1 <?php require("common.php"); 
2   
3 // syntax
4 //
5 // queries ::= query | query "###" queries
6 // query ::= name "@@@" sql
7 //
8 $limits = array("20","50","100");
9   
10 $quey_all = urlencode("Whole content:@@@select * from bench***");
11 $query_fail = urlencode(
12   "Number of failures:@@@" .
13   "select mark, count(distinct test) as fail_no from bench where result = 'fail' group by mark order by mark desc***"
14   . "###" . 
15   "Tests failed:@@@" .
16   "select distinct mark, test, result from bench where result = 'fail' order by mark desc***" 
17 );
18 $query_gc = urlencode(
19   "GC usage @@@" .
20   "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***"
21   . "###" . 
22   "GC usage (opt)@@@" .
23   "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***"
24   . "###" . 
25   "GC usage (byte)@@@" .
26   "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***"
27   
28 );
29 $query_auto = urlencode(
30   "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***"
31   . "###" . 
32   "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***"
33   #  . "###" . 
34   # "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"
35 );
36
37 $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 order by mark desc"
38 );
39
40 $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"
41 );
42
43 $query_total = urlencode(
44   
45 "Max N@@@select COUNT(DISTINCT test) as MAX from bench group by mark order by MAX desc LIMIT 0,1;"
46   . "###" .
47   "Number of compiled tests@@@select mark, COUNT(DISTINCT test) as N from bench group by mark order by mark desc***"
48 );
49
50 function minus1_to_all($s){
51   if ($s == "-1") 
52     return "all";
53   else 
54     return $s;
55 }
56
57 function links_of($name,$q,$limits){
58   echo "<li>$name :&nbsp;&nbsp;&nbsp;";
59   foreach($limits as $l) {
60     $q1 = str_replace(urlencode("***"), " LIMIT 0,$l", $q);
61     echo "<a href=\"showquery.php?query=$q1;\">" . 
62           minus1_to_all($l) . "</a>&nbsp;&nbsp;";
63   }
64     $q1 = str_replace(urlencode("***"), " LIMIT 0,-1", $q);
65     echo "<a href=\"showquery.php?query=$q1;\">" . 
66           minus1_to_all("-1") . "</a>&nbsp;&nbsp;";
67   
68   echo "</li>";
69 }
70
71 ?>
72
73 <html>
74   <head>
75   <link type="text/css" rel="stylesheet" href="style.css"/>
76   </head>
77   <body>
78     <h1>QUERY the benchmark system</h1>
79     <h2>Common Queries</h2>
80     <p>
81       <ul>
82       <? links_of("Broken tests",$query_fail,$limits) ?>
83       <? links_of("Garbage collector killer",$query_gc,$limits) ?>
84       <? links_of("Auto performances",$query_auto,$limits) ?>
85       <? links_of("Global performances (bytecode)",$query_csc,$limits) ?>
86       <? links_of("Global performances (nativecode)",$query_csc_opt,$limits) ?>
87       <? links_of("Number of compiled tests",$query_total,$limits) ?>
88       <? links_of("All table contents",$quey_all,$limits) ?>
89       </ul>
90     </p>
91     <h2>Custom Query</h2>
92     <form action="composequery.php" method="get">
93     <table>
94   <tr>
95     <td>Marks:</td>
96     <td> 
97       <? array_to_combo("mark",
98             query("select distinct mark from bench order by mark desc;")); ?>
99     </td>
100   </tr>
101   <tr>
102     <td>Compilations:</td>
103     <td> 
104       <? array_to_combo("compilation",
105            query("select distinct compilation from bench;")); ?>
106     </td>
107   </tr>
108   <tr>
109     <td>Options:</td>
110     <td>  
111       <?array_to_combo("options",query("select distinct options from bench;"));?>
112     </td>
113   </tr>
114   <tr>
115     <td>Tests:</td>
116     <td>    
117       <? array_to_combo("test",query("select distinct test from bench;")); ?>
118     </td>
119   </tr>
120   <tr>
121     <td>Test results:</td>
122     <td>
123       <? array_to_combo("result",query("select distinct result from bench;")); ?>
124     </td>
125   </tr>
126   <tr>
127     <td>Group By: </td>
128     <td>
129       <? array_to_combo("groupby",array(array("mark","options"))); ?>
130     </td>
131   </tr>
132   <tr>
133     <td>Limit: </td>
134     <td>
135       <? array_to_combo("limit",array($limits)); ?>
136     </td>
137   </tr>
138   <tr>
139     <td><input type="submit" value="Submit"/></td>
140   </tr>
141  </table>
142 </form>
143 </body>
144 </html>