benchmark: adjust byte size for buffer-copy

PR-URL: https://github.com/nodejs/node/pull/55295
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
Rafael Gonzaga 2024-10-14 09:14:01 -03:00 committed by GitHub
parent 80b56bbab0
commit 48b852a7f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,7 +2,7 @@
const common = require('../common.js'); const common = require('../common.js');
const bench = common.createBenchmark(main, { const bench = common.createBenchmark(main, {
bytes: [0, 8, 128, 32 * 1024], bytes: [8, 128, 1024],
partial: ['true', 'false'], partial: ['true', 'false'],
n: [6e6], n: [6e6],
}); });