Skip to content

Commit

Permalink
benchmark: update iterations in benchmark/util/splice-one.js
Browse files Browse the repository at this point in the history
Increase the number of iterations from 1e5 to 5e6
to avoid the test performance gap caused by inactive
V8 optimization caused by insufficient number of iterations

Refs: #50571
PR-URL: #50698
Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
  • Loading branch information
Septa2112 authored and UlisesGascon committed Dec 19, 2023
1 parent 07a4e94 commit e40a559
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/util/splice-one.js
Expand Up @@ -3,7 +3,7 @@
const common = require('../common');

const bench = common.createBenchmark(main, {
n: [1e5],
n: [5e6],
pos: ['start', 'middle', 'end'],
size: [10, 100, 500],
}, { flags: ['--expose-internals'] });
Expand Down

0 comments on commit e40a559

Please sign in to comment.