Skip to content

Commit

Permalink
typed arrays: preliminary benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Jul 27, 2011
1 parent d851ce0 commit bebb7d4
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
15 changes: 15 additions & 0 deletions benchmark/arrays/var_int.js
@@ -0,0 +1,15 @@
var types = 'Array Buffer Int8Array Uint8Array Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array'.split(' ');

var type = types[types.indexOf(process.argv[2])];
if (!type)
type = types[0];

console.error('Benchmarking', type);
var clazz = global[type];

var arr = new clazz(25 * 10e5);
for (var i = 0; i < 10; ++i) {
for (var j = 0, k = arr.length; j < k; ++j) {
arr[j] = (j ^ k) & 127;
}
}
15 changes: 15 additions & 0 deletions benchmark/arrays/zero_float.js
@@ -0,0 +1,15 @@
var types = 'Array Buffer Int8Array Uint8Array Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array'.split(' ');

var type = types[types.indexOf(process.argv[2])];
if (!type)
type = types[0];

console.error('Benchmarking', type);
var clazz = global[type];

var arr = new clazz(25 * 10e5);
for (var i = 0; i < 10; ++i) {
for (var j = 0, k = arr.length; j < k; ++j) {
arr[j] = 0.0;
}
}
15 changes: 15 additions & 0 deletions benchmark/arrays/zero_int.js
@@ -0,0 +1,15 @@
var types = 'Array Buffer Int8Array Uint8Array Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array'.split(' ');

var type = types[types.indexOf(process.argv[2])];
if (!type)
type = types[0];

console.error('Benchmarking', type);
var clazz = global[type];

var arr = new clazz(25 * 10e5);
for (var i = 0; i < 10; ++i) {
for (var j = 0, k = arr.length; j < k; ++j) {
arr[j] = 0;
}
}

0 comments on commit bebb7d4

Please sign in to comment.