mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
566a1513d1
Some of the benchmark code can be a little dense. Not *very* hard to read but perhaps harder than it needs to be. These changes (many of them whitespace-only) hopefully improve readability. There are also a few cases of `assert.equal()` that are changed to `assert.strictEqual()`. PR-URL: https://github.com/nodejs/node/pull/9790 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
36 lines
583 B
JavaScript
36 lines
583 B
JavaScript
'use strict';
|
|
var common = require('../common.js');
|
|
|
|
var types = [
|
|
'Array',
|
|
'Buffer',
|
|
'Int8Array',
|
|
'Uint8Array',
|
|
'Int16Array',
|
|
'Uint16Array',
|
|
'Int32Array',
|
|
'Uint32Array',
|
|
'Float32Array',
|
|
'Float64Array'
|
|
];
|
|
|
|
var bench = common.createBenchmark(main, {
|
|
type: types,
|
|
n: [25]
|
|
});
|
|
|
|
function main(conf) {
|
|
var type = conf.type;
|
|
var clazz = global[type];
|
|
var n = +conf.n;
|
|
|
|
bench.start();
|
|
var arr = new clazz(n * 1e6);
|
|
for (var i = 0; i < 10; ++i) {
|
|
for (var j = 0, k = arr.length; j < k; ++j) {
|
|
arr[j] = (j ^ k) & 127;
|
|
}
|
|
}
|
|
bench.end(n);
|
|
}
|