-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathde.comci.bitmap.HighCardinalityBenchmark.html
More file actions
118 lines (96 loc) · 3.32 KB
/
de.comci.bitmap.HighCardinalityBenchmark.html
File metadata and controls
118 lines (96 loc) · 3.32 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Benchmark results for methods in class de.comci.bitmap.HighCardinalityBenchmark</title>
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("jquery", "1.4.2");
google.load('visualization', '1', {packages: ['linechart', 'table']});
</script>
<style type="text/css">
#content {
width: 800px ;
margin-left: auto;
margin-right: auto;
}
#chart {
width: 600px;
height: 400px;
margin-left: auto;
margin-right: auto;
margin-bottom: 10px;
display: block;
}
ul.expander {
display: inline;
margin-left: 0;
padding-left: 0;
font-size: .8em;
}
ul.expander li {
margin-left: 0;
list-style: none;
display: inline;
}
ul.expander li:before {
content: "\25BA\0020"; // 25B8
}
ul.expander li.expanded:before {
content: "\25BC\0020"; // 25BE
}
</style>
<script type="text/javascript">
var chart;
function drawData(data, labelColumn) {
var labelColumns = [0, 1, 2];
labelColumns.splice(labelColumn, 1);
var view = new google.visualization.DataView(data);
view.hideColumns(labelColumns);
chart.draw(view, {
titleY: "Round time [s]",
min: 0.0,max: 1.0,
});
}
function visualize(jsonData, className) {
var data = new google.visualization.DataTable(jsonData);
var table = new google.visualization.Table(document.getElementById('raw-data'));
table.draw(data, {
sort: "event",
});
google.visualization.events.addListener(table, 'sort',
function(event) {
if (event.column >= 0 && event.column <= 2) {
drawData(data, event.column);
}
}
);
chart = new google.visualization.LineChart(document.getElementById('chart'));
drawData(data, 02);
}
var data;
function receiveJsonpData(jsonpData) {
data = jsonpData;
}
google.setOnLoadCallback(function() {
visualize(data, "de.comci.bitmap.HighCardinalityBenchmark");
$("#properties").click(function () {
$(this).toggleClass("expanded");
$("#proplist").slideToggle();
});
});
</script>
</head>
<body style="font-family: Arial; margin: 30px;">
<div id="content">
<h1>Benchmark results for methods in class de.comci.bitmap.HighCardinalityBenchmark</h1>
<div id="chart" ></div>
<div id="raw-data"></div>
<div>
<ul class="expander"><li id="properties"><a href="#">Properties</a></li></ul>
<pre id="proplist" style="display: none; background-color: #e0e0e0;">Shows historical runs: 20</pre>
</div>
</div>
<script src="de.comci.bitmap.HighCardinalityBenchmark.jsonp"></script>
</body>
</html>