forked from greggman/webgl-matrix-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
matrix_benchmark.html
446 lines (410 loc) · 16 KB
/
matrix_benchmark.html
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
<!DOCTYPE html>
<html>
<head>
<title>Matrix Benchmark</title>
<!-- Common Utilities -->
<script type="text/javascript" src="sprintf.js"></script>
<!-- Graphing Utilities -->
<link type="text/css" rel="stylesheet" href="flotr/flotr.css"/>
<script type="text/javascript" src="flotr/lib/prototype.js"></script>
<script type="text/javascript" src="flotr/lib/canvas2image.js"></script>
<script type="text/javascript" src="flotr/lib/canvastext.js"></script>
<script type="text/javascript" src="flotr/flotr.js"></script>
<!-- Table Utilities -->
<link type="text/css" rel="stylesheet" href="table/table.css"/>
<script type="text/javascript" src="table/fastinit.js"></script>
<script type="text/javascript" src="table/tablesort.js"></script>
<script type="text/javascript" src="js/test-helper.js"></script>
<!-- Benchmarking utilities -->
<script type="text/javascript">
testData = {};
testSets = [];
testSetIndex = 0;
function debuggerLog(obj) {
if (window.console && window.console.log) {
window.console.log(obj);
}
}
function log(html) {
document.getElementById('logDiv').innerHTML += html + '<br/><br/>'
}
function logTitle(title) {
document.getElementById('logDiv').innerHTML +=
'=============================================<br/>' +
'<b>' + title + '</b><br/>' +
'=============================================' + '<br/><br/>'
}
function preTest(library, f, testInfo) {
// Repeats each benchmark multiple times to smooth out anomalies
// Also tracks min and max times
if(!f) {
return;
}
var internalRunCount = 5;
testInfo.iframe.contentWindow.TestHelper.resetPseudoRandom();
var data = f(internalRunCount, 1, 1000);
return data.result;
}
// Adds a test
function testSet(name, tests) {
testData[name] = {};
testSets.push({name: name, tests: tests});
}
function runTestSet(name, tests) {
setTimeout(function() {
logTitle(name);
var results = [];
var baseResult = null;
for(var i = 0; i < tests.length; ++i) {
var test = tests[i];
var result = preTest(test.library, test.test, test.testInfo);
results.push(result);
if (!baseResult && result) {
baseResult = result;
}
var library = test.library;
var data = TestHelper.test(library, test.test, testData[name]);
testData[name][library] = data;
if (data.avg === null) {
log('<i>' + library + ' Unsupported</i>');
} else {
log('<i>' + library + '</i> - Avg: <b>' + data.avg + ' iterations per second</b>, Min: ' + data.min + ' iterations per second, Max: ' + data.max + ' iterations per second');
}
}
// Compare the results to make sure we are testing the same thing
for (var i = 0; i < results.length; ++i) {
if (results[i] && !Compare(baseResult, results[i])) {
debuggerLog(name);
debuggerLog(tests[i].library);
debuggerLog(baseResult);
debuggerLog(results[i]);
log('<strong>' + tests[i].library + ': results do NOT match!!!</strong>');
testData[name][tests[i].library].bad = true;
}
}
plotBenchmarks();
updateTableData();
setTimeout(function() {
runNextTest();
}, 100);
}, 1);
}
function runNextTest() {
if (testSetIndex < testSets.length) {
var set = testSets[testSetIndex++];
runTestSet(set.name, set.tests);
}
}
var kEpsilon = 0.001;
function Compare(a, b, pre) {
if (b.isVector3) {
b = [b.x, b.y, b.z];
}
if (b.m11) {
b = [
b.m11, b.m12, b.m13, b.m14,
b.m21, b.m22, b.m23, b.m24,
b.m31, b.m32, b.m33, b.m34,
b.m41, b.m42, b.m43, b.m44
];
} else if (b.elements) {
b = b.elements;
}
return CompareInner(a, b, '');
function CompareInner(a, b, pre) {
// Check if array.
if (typeof(a) === 'number') {
if (typeof(b) !== 'number') {
return false;
}
var diff =Math.abs(a - b);
if (diff > kEpsilon) {
log('<strong>Mismatch: ' + pre + ' ' + a + ' != ' + b + ' diff = ' + diff + '</strong>');
return false;
}
} else if (a.length) {
if (a.length !== b.length) return false;
for (var i = 0; i < a.length; ++i) {
if (!Compare(a[i], b[i], pre + '[' + i.toString() + ']')) return false
}
} else for (var key in a) {
if (!Compare(a[key], b[key], pre + '[' + key + ']')) return false;
}
return true;
}
}
</script>
<style type="text/css">
body {
font: 0.8em Verdana,sans-serif;
}
strong {
color: red;
}
iframe {
width: 1px;
height: 1px;
}
</style>
</head>
<body>
<p>
This page benchmarks the performance of a collection of matrix libraries most of which are intended for use with WebGL:<br>
<a href="https://github.com/toji/gl-matrix">glMatrix</a> (v2.3.2, 2016-7-20),
<a href="http://code.google.com/p/webgl-mjs/">mjs</a> (rev 16, 2010-12-15),
CanvasMatrix,
<a href="http://code.google.com/p/ewgl-matrices/">EWGL_math</a> (rev 32, 2011-03-15),
the math utilities in Google's <a href="http://closure-library.googlecode.com/">Closure</a> (svn rev: 1364, 2011-11-3),
<a href="https://github.com/greggman/tdl">tdl</a> (commit: 59d484f, 2011-06-03), and
<a href="https://github.com/greggman/twgl.js">twgl.js</a> (v3.3.0, 2017-05-05), and
<a href="http://sylvester.jcoglan.com/">Sylvester</a> (v0.1.3, 2007-07-05).<br>
Benchmarks for each library are run in an iframe. Results measure millions of iterations per second of the target operation.<br/>
</p>
<div id="graph" style="width:900px;height:400px;margin:10px"></div>
<div id="tablediv" style="font-size:85%;width:800px;margin:10px">
<table id='data-table' class='sortable'>
<thead id="data-table-head">
<tr></tr>
</thead>
<tbody id="data-table-body"></tbody>
</table>
</div>
<p><em>
Adapted by Stephen Bannasch from the benchmarks Brandon Jones created in his <a href=" https://glmatrix.googlecode.com/hg/">glmatrix library</a>.<br>
Additional improvements by Gregg Tavares.<br>
Sylvester benchmarks by <a href="mailto:[email protected]">Felix E. Klee.</a><br/>
JavaScript Plotting library: <a href=" http://solutoire.com/flotr/">Flotr</a>;
<a href="http://tetlaw.id.au/view/blog/table-sorting-with-prototype/">Sortable Table</a> by Andrew Tetlaw.<br/>
The source code for these benchmarks can be found here on <a href="https://github.com/stepheneb/webgl-matrix-benchmarks">github</a>. Pull requests quite welcome!<br/>
</em></p>
<br/><br/>
<div id="logDiv"></div>
<!-- Benchmarks -->
<script type="text/javascript">
testURLs = [
{name: 'glMatrix', url: 'libs/glMatrix/glMatrix.html' },
{name: 'glMatrix-native', url: 'libs/glMatrix/glMatrix.html#native' },
{name: 'mjs', url: 'libs/mjs/mjs.html' },
{name: 'CanvasMatrix', url: 'libs/CanvasMatrix/CanvasMatrix.html'},
{name: 'EWGL', url: 'libs/EWGL_math/EWGL_math.html' },
{name: 'TDLMath', url: 'libs/tdl/tdl-math.html' },
{name: 'TDLFast', url: 'libs/tdl/tdl-fast.html' },
{name: 'closure', url: 'libs/closure/closure.html' },
{name: 'Three', url: 'libs/three.js/three.js.html' },
{name: 'twgl', url: 'libs/twgl/twgl.html' },
{name: 'twgl-native', url: 'libs/twgl/twgl-native.html' },
{name: 'Sylvester', url: 'libs/Sylvester/Sylvester.html' }
];
var libraries = testURLs.map(function(t) { return t.name;});
var waiting = 1;
function childLoaded() {
--waiting;
if (waiting == 0) {
debuggerLog("done loading");
gatherTests();
}
}
function testMain() {
// make all the iframes.
for (var ii = 0; ii < testURLs.length; ++ii) {
++waiting;
var testInfo = testURLs[ii];
var iframe = document.createElement('iframe');
iframe.setAttribute('src', testInfo.url);
document.body.appendChild(iframe);
testInfo.iframe = iframe;
}
childLoaded();
}
function gatherTests() {
var sets = {};
for (var ii = 0; ii < testURLs.length; ++ii) {
var testInfo = testURLs[ii];
var tests = testInfo.iframe.contentWindow.tests;
for (var testName in tests) {
if (!sets[testName]) {
sets[testName] = [];
}
sets[testName].push({
library: testInfo.name,
test: tests[testName].test,
testInfo: testInfo
});
}
}
for (var testName in sets) {
testSet(testName, sets[testName]);
}
plotBenchmarks();
createTableData();
setTimeout(runNextTest, 100);
}
var colors = [
'#ff0000',
'#4444ff',
'#00dd00',
'#cc00cc',
'#ee6600',
'#00ccbb',
'#990000',
'#110077',
'#118800',
'#770099',
'#aa4400',
'#008877'
];
function plotBenchmarks() {
var datasets = [];
var benchmarks = [];
var benchmarkIndex, libraryIndex;
benchmarkIndex = 0;
var x_axis_tics = [];
for (benchmark in testData) {
benchmarks.push(benchmark);
libraryIndex = 0;
for (library in testData[benchmark]) {
if (!datasets[libraryIndex]) {
datasets.push({});
datasets[libraryIndex]['data'] = [];
datasets[libraryIndex]['label'] = library;
datasets[libraryIndex]['color'] = colors[libraryIndex];
datasets[libraryIndex]['lines'] = { show: true };
datasets[libraryIndex]['points'] = { show: true };
}
datasets[libraryIndex]['data'].push([benchmarkIndex, testData[benchmark][library].avg / 1000000]);
libraryIndex++;
}
benchmarkIndex++;
}
for(i = 0; i < benchmarks.length; i++) {
x_axis_tics.push([i, benchmarks[i]])
}
var f = Flotr.draw($('graph'), datasets,
{
xaxis:{
labelsAngle: 60,
ticks: x_axis_tics,
title: 'Benchmark Operation',
noTics: benchmarks.length,
min: 0, max: benchmarks.length - 1,
},
yaxis:{ title: 'Iterations Per Second (x1000000)', min: 0, max: 40 },
title: "WebGL Matrix Library Benchmark",
subtitle: "Millions of iterations per second averaged over 10 runs (higher is better)",
grid:{ verticalLines: true, backgroundColor: 'white' },
HtmlText: false,
legend: { position: 'nw' },
mouse:{
track: true,
lineColor: 'purple',
relative: true,
position: 'nw',
sensibility: 1, // => The smaller this value, the more precise you've to point
trackDecimals: 1,
trackFormatter: function(obj) {
return obj.series.label + ':' + benchmarks[Number(obj.x)] + ', ' + obj.y
}
},
crosshair:{ mode: 'xy' }
}
);
};
var data_table_head = document.getElementById("data-table-head");
var data_table_body = document.getElementById("data-table-body");
function library_to_id(library) {
return library.toLowerCase().replace(/\W/g, '_');
}
function createTableData() {
var row, data, list, item, header;
row = document.createElement('tr');
header = document.createElement('th');
header.className = "text sortcol";
header.textContent = "Library";
row.appendChild(header);
for(benchmark in testData) {
header = document.createElement('th');
header.className = "number sortcol";
header.textContent = benchmark;
row.appendChild(header);
};
header = document.createElement('th');
header.className = "number sortcol sortfirstdesc";
header.textContent = "Average";
row.appendChild(header);
data_table_head.deleteRow(0)
data_table_head.appendChild(row);
for (i = 0; i < libraries.length; i++) {
row = document.createElement('tr');
row.id = libraries[i] + '_row';
data = document.createElement('td');
data.style.backgroundColor = colors[i];
data.style.color = '#ffffff';
data.style.fontWeight = 'normal';
data.style.fontFamily = 'Arial Black';
data.textContent = libraries[i];
row.appendChild(data);
for(benchmark in testData) {
data = document.createElement('td');
data.id = benchmark + '_' + library_to_id(libraries[i]) + '_data'
data.textContent = "";
row.appendChild(data);
};
data = document.createElement('td');
data.id = library_to_id(libraries[i]) + '_ave__data'
data.textContent = "";
row.appendChild(data);
data_table_body.appendChild(row);
};
};
function updateTableData() {
var row, data, value, totals = {}, counts = {};
for(var benchmark in testData) {
var bestLibraries;
var bestIPS = -1;
for (var library in testData[benchmark]) {
var id = benchmark + '_' + library_to_id(library) + '_data';
data = document.getElementById(id);
value = testData[benchmark][library].avg;
if (typeof(value) === "number") {
value = value / 1000000;
data.textContent = sprintf("%2.2f", value);
totals[library] = value + (totals[library] || 0);
counts[library] = 1 + (counts[library] || 0);
if (bestIPS < 0 || value > bestIPS) {
bestIPS = value;
bestLibraries = [library];
} else if (value == bestIPS) {
bestLibraries.push(library);
}
} else {
data.textContent = value;
}
if (testData[benchmark][library].bad) {
data.textContent += " (bad)";
data.style.backgroundColor = '#fcc';
}
}
if (bestIPS > 0) {
for (var i = 0; i < bestLibraries.length; ++i) {
var library = bestLibraries[i];
data = document.getElementById(benchmark + '_' + library_to_id(library) + '_data');
data.style.backgroundColor = '#acf';
}
}
}
for (var library in totals) {
if (counts[library]) {
data = document.getElementById(library_to_id(library) + '_ave__data');
data.textContent = sprintf("%2.2f", totals[library] / counts[library]);
}
}
SortableTable.load();
};
</script>
<script type="text/javascript">
window.onload=function() {
testMain();
}
</script>
</body>
</html>