Skip to content

Commit 87c663c

Browse files
NullVoxPopuliclaude
andcommitted
Increase iteration counts for small/medium benchmarks
Small: 1000→2000, medium: 200→500. The previous run showed gts small still drifting at -3.4% while medium/large were within 1%. More iterations per sample further dilutes GC and scheduling noise. Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
1 parent e208798 commit 87c663c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/parser.bench.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ globalThis.gc?.();
114114
// More iterations per sample → individual GC spikes get diluted, reducing
115115
// variance on noisy CI runners. Scale down for larger fixtures so each
116116
// sample doesn't take too long (mitata needs many samples for stable stats).
117-
const BENCH_ITERS = { small: 1000, medium: 200, large: 100 };
117+
const BENCH_ITERS = { small: 2000, medium: 500, large: 100 };
118118

119119
for (const { type, ext, experimentParse, controlParse } of PARSERS) {
120120
for (const size of SIZES) {

0 commit comments

Comments
 (0)