0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00
nodejs/benchmark
Anna Henningsen 69906fbc52
benchmark,lib: add process.hrtime.bigint benchmark
Add a benchmark, and amend the relevant source code comment to state
that currently, switching to directly returning a BigInt is not
stopped by technical obstacles but rather the fact that using a typed
array is actually a bit faster (about 2.5 %, measured locally).

PR-URL: https://github.com/nodejs/node/pull/26381
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
2019-03-05 23:23:53 +01:00
..
assert benchmark: use consistent coding style in assert/* 2019-02-03 01:48:32 -08:00
async_hooks benchmark: refactor 2018-02-01 10:49:04 +01:00
buffers benchmark: refactor for consistent style 2019-02-06 22:18:31 -08:00
child_process benchmark: refactor for consistent style 2019-02-06 22:18:31 -08:00
cluster benchmark: refactor for consistent style 2019-02-06 22:18:31 -08:00
crypto benchmark,doc,lib,test: capitalize comments 2019-02-28 18:31:10 +01:00
dgram benchmark: refactor for consistent style 2019-02-06 22:18:31 -08:00
dns
domain benchmark: refactor 2018-02-01 10:49:04 +01:00
es benchmark: refactor for consistent style 2019-02-06 22:18:31 -08:00
events benchmark: refactor for consistent style 2019-02-06 22:18:31 -08:00
fixtures benchmark: refactor for consistent style 2019-02-06 22:18:31 -08:00
fs benchmark,doc,lib,test: capitalize comments 2019-02-28 18:31:10 +01:00
http benchmark,test: refactoring 2019-02-18 13:15:28 -05:00
http2 http2: improve compat performance 2019-02-11 08:50:07 +01:00
misc benchmark: refactor for consistent style 2019-02-06 22:18:31 -08:00
module benchmark: remove unused catch bindings 2018-11-06 10:59:23 -05:00
napi doc,lib,test: capitalize comment sentences 2018-12-17 17:14:35 +01:00
net benchmark,doc,lib,test: capitalize comments 2019-02-28 18:31:10 +01:00
os os: improve networkInterfaces() performance 2019-01-14 07:42:27 +01:00
path benchmark: refactor path benchmarks 2019-03-05 01:22:22 +01:00
process benchmark,lib: add process.hrtime.bigint benchmark 2019-03-05 23:23:53 +01:00
querystring benchmark: refactor for consistent style 2019-02-06 22:18:31 -08:00
streams tools: add no-duplicate-requires rule 2018-07-12 16:11:11 -05:00
string_decoder benchmark: refactor for consistent style 2019-02-06 22:18:31 -08:00
timers benchmark: refactor for consistent style 2019-02-06 22:18:31 -08:00
tls benchmark: refactor for consistent style 2019-02-06 22:18:31 -08:00
url benchmark: pre-generate data set for URL benchmarks 2018-11-20 05:14:34 +08:00
util benchmark: refactor for consistent style 2019-02-06 22:18:31 -08:00
v8 benchmark: refactor for consistent style 2019-02-06 22:18:31 -08:00
vm benchmark: refactor 2018-02-01 10:49:04 +01:00
worker worker: remove --experimental-worker flag 2019-01-09 00:31:33 +01:00
zlib benchmark: refactor for consistent style 2019-02-06 22:18:31 -08:00
_benchmark_progress.js doc,lib,test: capitalize comment sentences 2018-12-17 17:14:35 +01:00
_cli.js benchmark,doc,lib,test: capitalize comments 2019-02-28 18:31:10 +01:00
_cli.R
_http-benchmarkers.js http: improve performance for incoming headers 2019-02-13 21:25:20 +08:00
_test-double-benchmarker.js test: add test-benchmark-http2 2018-10-29 11:39:32 -07:00
.eslintrc.yaml tools: apply more stringent lint rules for benchmark code 2019-02-06 22:18:34 -08:00
common.js benchmark: remove unreachable return 2019-02-07 13:21:33 +01:00
compare.js benchmark: remove unreachable return 2019-02-07 13:21:33 +01:00
compare.R benchmark: fix "comparisons"' typo 2018-06-02 08:07:22 +09:00
README.md doc: update benchmark doc 2019-01-09 01:39:43 +01:00
run.js benchmark: remove unreachable return 2019-02-07 13:21:33 +01:00
scatter.js benchmark: remove unreachable return 2019-02-07 13:21:33 +01:00
scatter.R benchmark: add lines to scatter plots 2018-09-02 13:15:41 +02:00

Node.js Core Benchmarks

This folder contains code and data used to measure performance of different Node.js implementations and different ways of writing JavaScript run by the built-in JavaScript engine.

For a detailed guide on how to write and run benchmarks in this directory, see the guide on benchmarks.

Table of Contents

Benchmark Directories

Directory Purpose
assert Benchmarks for the assert subsystem.
buffers Benchmarks for the buffer subsystem.
child_process Benchmarks for the child_process subsystem.
crypto Benchmarks for the crypto subsystem.
dgram Benchmarks for the dgram subsystem.
domain Benchmarks for the domain subsystem.
es Benchmarks for various new ECMAScript features and their pre-ES2015 counterparts.
events Benchmarks for the events subsystem.
fixtures Benchmarks fixtures used in various benchmarks throughout the benchmark suite.
fs Benchmarks for the fs subsystem.
http Benchmarks for the http subsystem.
http2 Benchmarks for the http2 subsystem.
misc Miscellaneous benchmarks and benchmarks for shared internal modules.
module Benchmarks for the module subsystem.
net Benchmarks for the net subsystem.
path Benchmarks for the path subsystem.
process Benchmarks for the process subsystem.
querystring Benchmarks for the querystring subsystem.
streams Benchmarks for the streams subsystem.
string_decoder Benchmarks for the string_decoder subsystem.
timers Benchmarks for the timers subsystem, including setTimeout, setInterval, .etc.
tls Benchmarks for the tls subsystem.
url Benchmarks for the url subsystem, including the legacy url implementation and the WHATWG URL implementation.
util Benchmarks for the util subsystem.
vm Benchmarks for the vm subsystem.

Other Top-level files

The top-level files include common dependencies of the benchmarks and the tools for launching benchmarks and visualizing their output. The actual benchmark scripts should be placed in their corresponding directories.

  • _benchmark_progress.js: implements the progress bar displayed when running compare.js
  • _cli.js: parses the command line arguments passed to compare.js, run.js and scatter.js
  • _cli.R: parses the command line arguments passed to compare.R
  • _http-benchmarkers.js: selects and runs external tools for benchmarking the http subsystem.
  • common.js: see Common API.
  • compare.js: command line tool for comparing performance between different Node.js binaries.
  • 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.
  • scatter.R: R script for visualizing the output of scatter.js with scatter plots.

Common API

The common.js module is used by benchmarks for consistency across repeated tasks. It has a number of helpful functions and properties to help with writing benchmarks.

createBenchmark(fn, configs[, options])

See the guide on writing benchmarks.

default_http_benchmarker

The default benchmarker used to run HTTP benchmarks. See the guide on writing HTTP benchmarks.

PORT

The default port used to run HTTP benchmarks. See the guide on writing HTTP benchmarks.

sendResult(data)

Used in special benchmarks that can't use createBenchmark and the object it returns to accomplish what they need. This function reports timing data to the parent process (usually created by running compare.js, run.js or scatter.js).