mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
411 B
16 lines
411 B
13 years ago
|
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;
|
||
|
}
|
||
|
}
|