Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
fc56791
perf_hooks: implement Histogram meanCI API
jasnell Aug 27, 2026
c8dadb3
lib: implement node:bench
jasnell Aug 27, 2026
fa4c9d0
lib: implement bench/reporters
jasnell Aug 27, 2026
c4b502c
lib: complete the implementation of node:bench and cli
jasnell Aug 27, 2026
fd49026
benchmark: implement node:bench version of bench tools
jasnell Aug 28, 2026
5ebdf8e
src: fixup histogram and options linting issues
jasnell Aug 28, 2026
b3d1ad5
lib: add `node:bench` explicit createRunner
jasnell Aug 28, 2026
b84ea8f
test: update bench tests to not fail on no-crypto
jasnell Aug 28, 2026
2c0ddc5
test: improve node:bench test coverage
jasnell Aug 28, 2026
2e25f5d
lib: add runId, fileRunId, entryFile, namePath to node:bench
jasnell Aug 28, 2026
58e2dfe
lib: improve node:bench stream handling
jasnell Aug 28, 2026
52fccd0
lib: clarify mean in node:bench docs
jasnell Aug 28, 2026
10dbdee
doc: clarify measurement integrity details of node:bench
jasnell Aug 28, 2026
f36e794
lib: add `bench:plan` event to `node:bench`
jasnell Aug 28, 2026
489cca9
doc: clarify isolation modes for node:bench
jasnell Aug 28, 2026
186129c
doc: clarify node:bench significance policy
jasnell Aug 28, 2026
7363eb8
lib: add context.diagnostic api to node:bench
jasnell Aug 28, 2026
1ead042
lib: add runFile api to node:bench
jasnell Aug 29, 2026
0ba36c5
lib: have runFile honor permissions and accept URL/Buffer paths
jasnell Aug 29, 2026
f89fc50
lib: improve diagnostic message support
jasnell Aug 29, 2026
6d78070
lib,benchmark: address multiple review issues
jasnell Aug 29, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 77 additions & 0 deletions benchmark/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ directory, see [the guide on benchmarks](../doc/contributing/writing-and-running
## Table of Contents

* [File tree structure](#file-tree-structure)
* [`node:bench` evaluation tools](#nodebench-evaluation-tools)
* [Common API](#common-api)

## File tree structure
Expand Down Expand Up @@ -44,16 +45,92 @@ directories.
* `common.js`: see [Common API](#common-api).
* `compare.js`: command line tool for comparing performance between different
Node.js binaries.
* `compare-node-bench.js`: parallel comparison tool for explicit `node:bench`
files. It does not change or invoke `compare.js`.
* `compare.R`: R script for statistically analyzing the output of
`compare.js`
* `run.js`: command line tool for running individual benchmark suite(s).
* `scatter.js`: command line tool for comparing the performance
between different parameters in benchmark configurations,
for example to analyze the time complexity. Pass `--analyze` to
summarize the results without R.
* `scatter-node-bench.js`: parallel scatter-data tool for an explicit
`node:bench` file. It does not change or invoke `scatter.js`.
* `scatter.R`: R script for visualizing the output of `scatter.js` with
scatter plots.

## `node:bench` evaluation tools

The `compare-node-bench.js` and `scatter-node-bench.js` tools run explicit
`node:bench` files without changing the existing benchmark framework or its
tools. Each repeated observation for a benchmark identity is collected by a
separate process invocation with one measured sample. Benchmarks declared in
the same file still execute serially in that process and can share JIT, garbage
collector, heap, and cache state. This differs from legacy configuration-level
process isolation and must be considered when comparing the frameworks.

Compare two binaries and analyze the compatible CSV using `compare.R`:

```console
./node benchmark/compare-node-bench.js \
--old ./node-main --new ./node-pr --runs 30 -- \
benchmark/crypto/_create-hash.node-bench.js > compare-node-bench.csv
Rscript benchmark/compare.R < compare-node-bench.csv
```

Pass `--analyze` to run the same Welch analysis inline. `--max-regression N`
implies `--analyze` and makes the command fail only when the Holm-Bonferroni
adjusted one-sided p-value against the `N%` threshold is below 0.05 and the full
95% confidence interval is worse than `-N%`. Requiring both conditions prevents
a noisy point estimate from failing a regression gate.

```console
./node benchmark/compare-node-bench.js \
--old ./node-main --new ./node-pr --runs 30 \
--max-regression 5 -- benchmark/crypto/_create-hash.node-bench.js
```

Collect parameter data for the parallel buffer benchmark and plot it using
`scatter.R`:

```console
./node benchmark/scatter-node-bench.js --node ./node --runs 30 -- \
benchmark/buffers/_buffer-compare-offset.node-bench.js \
> scatter-node-bench.csv
Rscript benchmark/scatter.R --xaxis size --category method \
--plot scatter-node-bench.png < scatter-node-bench.csv
```

Pass `--analyze` with an x-axis parameter to summarize the samples without R.
The output includes mean and median confidence intervals, skew warnings, an
optional bar chart, and Mann-Whitney U and Cliff's delta comparisons between
consecutive x-axis values. Use `--category` for a second grouping parameter and
`--no-chart` to omit the chart.

Because configurations in one file share a process, inline analysis averages
aggregated configurations into one value per outer process. Consecutive
x-axis comparisons use alternating, disjoint process sets so the unpaired
Mann-Whitney test does not treat correlated values as independent samples.

```console
./node benchmark/scatter-node-bench.js --runs 30 --analyze \
--xaxis size --category method -- \
benchmark/buffers/_buffer-compare-offset.node-bench.js
```

A file passed to `scatter-node-bench.js` must use one logical benchmark name.
Parameter values distinguish its configurations. The tool rejects unstable
identities and names or parameters that would merge unrelated CSV groups.

The underscore-prefixed benchmark files are parallel ports used to compare the
measurement frameworks. Legacy discovery ignores them, so the original files
remain the source benchmarks for `run.js`, `compare.js`, and `scatter.js`. The
ports use the platform-specific original relative filename as their benchmark
name and preserve parameter column names to keep CSV grouping compatible. For
a direct framework comparison, collect the same number of runs from an
original benchmark with `scatter.js` and from its port with
`scatter-node-bench.js`, then compare their rate distributions.

## Common API

The common.js module is used by benchmarks for consistency across repeated
Expand Down
Loading