forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
benchmark: improve buffer.readInt(B|L)E benchmarks
Split them into their own benhmark file and use different byteLength values. PR-URL: nodejs#11146 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
- Loading branch information
Showing
3 changed files
with
43 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
'use strict'; | ||
const common = require('../common.js'); | ||
|
||
const types = [ | ||
'IntLE', | ||
'IntBE', | ||
]; | ||
|
||
const bench = common.createBenchmark(main, { | ||
noAssert: ['false', 'true'], | ||
buffer: ['fast', 'slow'], | ||
type: types, | ||
millions: [1], | ||
byteLength: [1, 2, 4, 6] | ||
}); | ||
|
||
function main(conf) { | ||
const noAssert = conf.noAssert === 'true'; | ||
const len = conf.millions * 1e6; | ||
const clazz = conf.buf === 'fast' ? Buffer : require('buffer').SlowBuffer; | ||
const buff = new clazz(8); | ||
const type = conf.type || 'UInt8'; | ||
const fn = `read${type}`; | ||
|
||
buff.writeDoubleLE(0, 0, noAssert); | ||
const testFunction = new Function('buff', ` | ||
for (var i = 0; i !== ${len}; i++) { | ||
buff.${fn}(0, ${conf.byteLength}, ${JSON.stringify(noAssert)}); | ||
} | ||
`); | ||
bench.start(); | ||
testFunction(buff); | ||
bench.end(len / 1e6); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters