blob: 69ce7e8e637e062a1c6eae7dd84dc5fbb2bfa0cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
<html>
<head>
<title>BM2 - Context Details</title>
<script type="text/javascript" src="jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="tablesorter/jquery.tablesorter.js">
</script>
<script type="text/javascript" src="boxover/boxover.js"></script>
<script type="text/javascript" src="global.js"></script>
<script type="text/javascript" src="stats1.js"></script>
<link type="text/css" rel="stylesheet" href="style.css" />
<link type="text/css" rel="stylesheet" href="tablesorter/docs/css/jq.css" />
<link type="text/css" rel="stylesheet"
href="tablesorter/themes/bm/style.css" />
</head>
<body>
<span id="title" style="font-size:18; font-weight:bold">
BM2 - Context Details</span>
<span style="white-space:nowrap">
<span id="status">no status</span>
<img alt="spinner" id="spinner" src="images/ajax-spinner.gif"
style="display:none"/>
</span>
<br />
<a id="mainPageLink" href="">main page</a>
<script type="text/javascript">
$("#mainPageLink").attr("href", "http://" + location.host + "/bm2");
</script>
<a id="analysisPageLink" href="">analysis page (all types)</a>
<script type="text/javascript">
$("#analysisPageLink").attr(
"href", "http://" + location.host + "/bm2/analysis");
</script>
<br />
<br />
<!-- *** BEGIN Shown context *********************************** -->
<div id="div_shownContext" style="display:none">
<span style="font-size:14; font-weight:bold">Context:</span>
<table>
<tbody>
<tr><td style="text-align:right"><b>Database:</b></td>
<td id="shown_database" colspan=2>none</td></tr>
<tr><td style="text-align:right"><b>Host:</b></td>
<td id="shown_host">none</td></tr>
<tr><td style="text-align:right"><b>Platform:</b></td>
<td id="shown_platform">none</td></tr>
<tr><td style="text-align:right"><b>Branch:</b></td>
<td id="shown_branch">none</td></tr>
<tr><td style="text-align:right"><b>SHA-1:</b></td>
<td id="shown_sha1">none</td></tr>
</tbody>
</table>
</div>
<!-- *** END Shown context *********************************** -->
<br />
<div id="div_statistics" style="display:none">
<!-- Overall stats: ... 2 B DONE! -->
<span style="font-size:14; font-weight:bold">Overall statistics:
<span style="color:red"> (2 B DONE!)</span>
</span>
<br />
<br />
<!-- *** BEGIN Per-benchmark stats *********************************** -->
<br />
<span style="font-size:14; font-weight:bold">Benchmarks:</span>
<br />
<span id="pbmTable_nrows">no</span> rows
<span id="pbmTable_sortInProgress"
style="display:none"> (sorting ...)</span>
<br />
<div style="overflow:auto; height:800px; border-style:solid; border-width:1px;">
<table id="pbmTable" class="tablesorter" border="0"
cellpadding="0" cellspacing="1">
<thead>
<tr>
<th id="ntotal">Total</th>
<script type="text/javascript">
setTooltip($("#ntotal"), "Sample size (# of observations)");
</script>
<th id="nvalid">Valid</th>
<script type="text/javascript">
setTooltip($("#nvalid"), "Valid sample size (# of valid observations)");
</script>
<th id="min">Min</th>
<script type="text/javascript">
setTooltip($("#min"), "Lowest valid observation");
</script>
<th id="max">Max</th>
<script type="text/javascript">
setTooltip($("#max"), "Highest valid observation");
</script>
<th id="median">Median</th>
<script type="text/javascript">
setTooltip($("#median"), "Median of valid observations");
</script>
<th id="mean">Mean</th>
<script type="text/javascript">
setTooltip($("#mean"), "Arithmetic mean of valid observations");
</script>
<th id="stddev">Stddev</th>
<script type="text/javascript">
setTooltip($("#stddev"), "Standard deviation of valid observations");
</script>
<th id="rsd">RSD</th>
<script type="text/javascript">
setTooltip(
$("#rsd"), "Relative standard deviation of valid observations");
</script>
<th id="rse">RSE</th>
<script type="text/javascript">
setTooltip($("#rse"), "Relative standard error of valid observations");
</script>
<th>H0</th> <!-- histogram bin 0 -->
<th>H1</th>
<th>H2</th>
<th>H3</th>
<th>H4</th>
<th>H5</th>
<th>H6</th>
<th>H7</th>
<th>H8</th>
<th>H9</th> <!-- histogram bin 9 -->
<th>Metric</th>
<th>Benchmark</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<!-- *** END Per-benchmark stats *********************************** -->
</div>
</body>
</html>
|