2018-01-13 22:27:24 +03:00
|
|
|
# hyperfine
|
2018-01-18 21:19:13 +03:00
|
|
|
[![Build Status](https://travis-ci.org/sharkdp/hyperfine.svg?branch=master)](https://travis-ci.org/sharkdp/hyperfine)
|
2018-02-13 23:16:45 +03:00
|
|
|
[![Build status](https://ci.appveyor.com/api/projects/status/pdqq5frgkcj0smrs?svg=true)](https://ci.appveyor.com/project/sharkdp/hyperfine)
|
2018-01-18 21:19:13 +03:00
|
|
|
[![Version info](https://img.shields.io/crates/v/hyperfine.svg)](https://crates.io/crates/hyperfine)
|
2018-10-19 22:35:21 +03:00
|
|
|
[中文](https://github.com/chinanf-boy/hyperfine-zh)
|
2018-01-13 22:27:24 +03:00
|
|
|
|
2019-06-08 15:29:07 +03:00
|
|
|
A command-line benchmarking tool.
|
2018-01-13 22:27:24 +03:00
|
|
|
|
2018-01-18 20:13:12 +03:00
|
|
|
**Demo**: Benchmarking [`fd`](https://github.com/sharkdp/fd) and
|
|
|
|
[`find`](https://www.gnu.org/software/findutils/):
|
2018-01-15 00:19:52 +03:00
|
|
|
|
2019-09-01 16:52:45 +03:00
|
|
|
![hyperfine](https://i.imgur.com/EGMzTps.gif)
|
2018-01-13 23:31:51 +03:00
|
|
|
|
2018-01-13 22:27:24 +03:00
|
|
|
## Features
|
|
|
|
|
2018-01-20 16:22:26 +03:00
|
|
|
* Statistical analysis across multiple runs.
|
|
|
|
* Support for arbitrary shell commands.
|
|
|
|
* Constant feedback about the benchmark progress and current estimates.
|
|
|
|
* Warmup runs can be executed before the actual benchmark.
|
|
|
|
* Cache-clearing commands can be set up before each timing run.
|
2019-06-08 15:36:45 +03:00
|
|
|
* Statistical outlier detection to detect interference from other programs and caching effects.
|
|
|
|
* Export results to various formats: CSV, JSON, Markdown, AsciiDoc.
|
|
|
|
* Parameterized benchmarks (e.g. vary the number of threads).
|
2018-02-13 23:17:27 +03:00
|
|
|
* Cross-platform
|
2018-01-13 23:07:28 +03:00
|
|
|
|
2018-01-17 00:03:50 +03:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
### Basic benchmark
|
|
|
|
|
2018-01-18 20:13:12 +03:00
|
|
|
To run a benchmark, you can simply call `hyperfine <command>...`. The argument(s) can be any
|
|
|
|
shell command. For example:
|
2018-01-17 00:03:50 +03:00
|
|
|
``` bash
|
2018-01-24 10:32:11 +03:00
|
|
|
hyperfine 'sleep 0.3'
|
2018-01-17 00:03:50 +03:00
|
|
|
```
|
|
|
|
|
2018-01-18 20:13:12 +03:00
|
|
|
Hyperfine will automatically determine the number of runs to perform for each command. By default,
|
|
|
|
it will perform *at least* 10 benchmarking runs. To change this, you can use the `-m`/`--min-runs`
|
|
|
|
option:
|
2018-01-17 00:03:50 +03:00
|
|
|
``` bash
|
2018-01-24 10:32:11 +03:00
|
|
|
hyperfine --min-runs 5 'sleep 0.2' 'sleep 3.2'
|
2018-01-17 00:03:50 +03:00
|
|
|
```
|
|
|
|
|
2019-10-13 17:24:46 +03:00
|
|
|
### Warmup runs and preparation commands
|
2018-01-17 00:03:50 +03:00
|
|
|
|
2018-01-18 20:13:12 +03:00
|
|
|
If the program execution time is limited by disk I/O, the benchmarking results can be heavily
|
2018-01-31 00:33:00 +03:00
|
|
|
influenced by disk caches and whether they are cold or warm.
|
2018-01-17 00:03:50 +03:00
|
|
|
|
2018-01-18 20:13:12 +03:00
|
|
|
If you want to run the benchmark on a warm cache, you can use the `-w`/`--warmup` option to perform
|
|
|
|
a certain number of program executions before the actual benchmark:
|
2018-01-17 00:03:50 +03:00
|
|
|
``` bash
|
2018-01-24 10:32:11 +03:00
|
|
|
hyperfine --warmup 3 'grep -R TODO *'
|
2018-01-17 00:03:50 +03:00
|
|
|
```
|
|
|
|
|
2018-01-18 20:13:12 +03:00
|
|
|
Conversely, if you want to run the benchmark for a cold cache, you can use the `-p`/`--prepare`
|
|
|
|
option to run a special command before *each* timing run. For example, to clear harddisk caches
|
|
|
|
on Linux, you can run
|
2018-01-17 00:03:50 +03:00
|
|
|
``` bash
|
|
|
|
sync; echo 3 | sudo tee /proc/sys/vm/drop_caches
|
|
|
|
```
|
2018-01-23 01:21:48 +03:00
|
|
|
To use this specific command with Hyperfine, call `sudo -v` to temporarily gain sudo permissions
|
2018-01-18 20:13:12 +03:00
|
|
|
and then call:
|
2018-01-17 00:03:50 +03:00
|
|
|
``` bash
|
2018-01-18 20:13:12 +03:00
|
|
|
hyperfine --prepare 'sync; echo 3 | sudo tee /proc/sys/vm/drop_caches' 'grep -R TODO *'
|
2018-01-17 00:03:50 +03:00
|
|
|
```
|
|
|
|
|
2018-03-24 23:01:41 +03:00
|
|
|
### Parameterized benchmarks
|
|
|
|
|
|
|
|
If you want to run a benchmark where only a single parameter is varied (say, the number of
|
|
|
|
threads), you can use the `-P`/`--parameter-scan` option and call:
|
|
|
|
``` bash
|
|
|
|
hyperfine --prepare 'make clean' --parameter-scan num_threads 1 12 'make -j {num_threads}'
|
|
|
|
```
|
2019-09-01 15:39:07 +03:00
|
|
|
This also works with decimal numbers. The `-D`/`--parameter-step-size` option can be used
|
|
|
|
to control the step size:
|
|
|
|
``` bash
|
2019-09-01 16:01:20 +03:00
|
|
|
hyperfine --parameter-scan delay 0.3 0.7 -D 0.2 'sleep {delay}'
|
2019-09-01 15:39:07 +03:00
|
|
|
```
|
2019-09-01 16:01:20 +03:00
|
|
|
This runs `sleep 0.3`, `sleep 0.5` and `sleep 0.7`.
|
2018-03-24 23:01:41 +03:00
|
|
|
|
|
|
|
### Export results
|
|
|
|
|
|
|
|
Hyperfine has multiple options for exporting benchmark results: CSV, JSON, Markdown (see `--help`
|
|
|
|
text for details). To export results to Markdown, for example, you can use the `--export-markdown`
|
|
|
|
option that will create tables like this:
|
|
|
|
|
2019-06-08 15:36:45 +03:00
|
|
|
| Command | Mean [s] | Min [s] | Max [s] | Relative |
|
|
|
|
|:---|---:|---:|---:|---:|
|
2019-10-13 17:03:04 +03:00
|
|
|
| `find . -iregex '.*[0-9]\.jpg$'` | 2.275 ± 0.046 | 2.243 | 2.397 | 9.79 ± 0.22 |
|
|
|
|
| `find . -iname '*[0-9].jpg'` | 1.427 ± 0.026 | 1.405 | 1.468 | 6.14 ± 0.13 |
|
|
|
|
| `fd -HI '.*[0-9]\.jpg$'` | 0.232 ± 0.002 | 0.230 | 0.236 | 1.00 |
|
2018-03-24 23:01:41 +03:00
|
|
|
|
2018-12-12 22:37:51 +03:00
|
|
|
The JSON output is useful if you want to analyze the benchmark results in more detail. See the
|
|
|
|
[`scripts/`](https://github.com/sharkdp/hyperfine/tree/master/scripts) folder for some examples.
|
|
|
|
|
2018-01-13 23:07:28 +03:00
|
|
|
## Installation
|
|
|
|
|
2018-03-25 00:06:03 +03:00
|
|
|
### On Ubuntu
|
|
|
|
|
|
|
|
Download the appropriate `.deb` package from the [Release page](https://github.com/sharkdp/hyperfine/releases)
|
|
|
|
and install it via `dpkg`:
|
2018-01-13 23:07:28 +03:00
|
|
|
```
|
2019-11-25 21:55:21 +03:00
|
|
|
wget https://github.com/sharkdp/hyperfine/releases/download/v1.9.0/hyperfine_1.9.0_amd64.deb
|
|
|
|
sudo dpkg -i hyperfine_1.9.0_amd64.deb
|
2018-01-13 23:07:28 +03:00
|
|
|
```
|
2018-01-13 22:27:24 +03:00
|
|
|
|
2019-07-21 12:01:05 +03:00
|
|
|
### On Fedora
|
|
|
|
|
|
|
|
On Fedora, hyperfine can be installed from the official repositories:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
dnf install hyperfine
|
|
|
|
```
|
|
|
|
|
2019-06-11 02:45:48 +03:00
|
|
|
### On Alpine Linux
|
|
|
|
|
|
|
|
On Alpine Linux, hyperfine can be installed [from the official repositories](https://pkgs.alpinelinux.org/packages?name=hyperfine):
|
|
|
|
```
|
|
|
|
apk add hyperfine
|
|
|
|
```
|
|
|
|
|
2018-03-25 00:06:03 +03:00
|
|
|
### On Arch Linux
|
2018-01-15 20:34:48 +03:00
|
|
|
|
2019-08-01 08:23:07 +03:00
|
|
|
On Arch Linux, hyperfine can be installed [from the official repositories](https://www.archlinux.org/packages/community/x86_64/hyperfine/):
|
2018-01-15 20:34:48 +03:00
|
|
|
```
|
2019-08-01 08:23:07 +03:00
|
|
|
pacman -S hyperfine
|
2018-01-15 20:34:48 +03:00
|
|
|
```
|
|
|
|
|
2019-10-30 03:23:46 +03:00
|
|
|
### On NixOS
|
|
|
|
|
|
|
|
On NixOS, hyperfine can be installed [from the official repositories](https://nixos.org/nixos/packages.html?query=hyperfine):
|
|
|
|
```
|
|
|
|
nix-env -i hyperfine
|
|
|
|
```
|
|
|
|
|
2018-03-25 00:06:03 +03:00
|
|
|
### On Void Linux
|
|
|
|
|
|
|
|
Hyperfine can be installed via xbps
|
2018-01-20 16:22:26 +03:00
|
|
|
|
|
|
|
```
|
2018-03-25 00:06:03 +03:00
|
|
|
xbps-install -S hyperfine
|
2018-01-20 16:22:26 +03:00
|
|
|
```
|
|
|
|
|
2019-06-08 15:36:45 +03:00
|
|
|
### On macOS
|
|
|
|
|
|
|
|
Hyperfine can be installed via [Homebrew](https://brew.sh):
|
|
|
|
```
|
|
|
|
brew install hyperfine
|
|
|
|
```
|
|
|
|
|
2019-08-26 12:46:53 +03:00
|
|
|
### On FreeBSD
|
|
|
|
|
|
|
|
Hyperfine can be installed via pkg:
|
|
|
|
```
|
|
|
|
pkg install hyperfine
|
|
|
|
```
|
|
|
|
|
2019-06-08 09:59:52 +03:00
|
|
|
### With conda
|
2019-06-08 00:54:44 +03:00
|
|
|
|
2019-06-08 09:59:52 +03:00
|
|
|
Hyperfine can be installed via [`conda`](https://conda.io/en/latest/) from the [`conda-forge`](https://anaconda.org/conda-forge/hyperfine) channel:
|
2019-06-08 00:54:44 +03:00
|
|
|
```
|
|
|
|
conda install -c conda-forge hyperfine
|
|
|
|
```
|
|
|
|
|
2018-03-25 00:06:03 +03:00
|
|
|
### With cargo (Linux, macOS, Windows)
|
2018-01-31 02:55:26 +03:00
|
|
|
|
2018-03-25 00:06:03 +03:00
|
|
|
Hyperfine can be installed via [cargo](https://doc.rust-lang.org/cargo/):
|
2018-01-31 02:55:26 +03:00
|
|
|
```
|
2018-03-25 00:06:03 +03:00
|
|
|
cargo install hyperfine
|
2018-01-31 02:55:26 +03:00
|
|
|
```
|
2018-01-20 16:22:26 +03:00
|
|
|
|
2020-01-04 13:08:59 +03:00
|
|
|
Make sure that you use Rust 1.36 or higher.
|
2018-07-18 19:11:05 +03:00
|
|
|
|
2018-09-28 23:02:24 +03:00
|
|
|
### From binaries (Linux, macOS, Windows)
|
2018-03-25 00:06:03 +03:00
|
|
|
|
|
|
|
Download the corresponding archive from the [Release page](https://github.com/sharkdp/hyperfine/releases).
|
|
|
|
|
2019-06-08 15:29:07 +03:00
|
|
|
## Alternative tools
|
|
|
|
|
2020-01-04 13:46:25 +03:00
|
|
|
Hyperfine is inspired by [bench](https://github.com/Gabriel439/bench).
|
|
|
|
|
|
|
|
## Integration with other tools
|
|
|
|
|
|
|
|
[Chronologer](https://github.com/dandavison/chronologer) is a tool that uses `hyperfine` to
|
|
|
|
visualize changes in benchmark timings across your Git history.
|
|
|
|
|
|
|
|
Make sure to check out the [`scripts` folder](https://github.com/sharkdp/hyperfine/tree/master/scripts)
|
|
|
|
in this repository for a set of tools to work with `hyperfine` benchmark results.
|
2019-06-08 15:29:07 +03:00
|
|
|
|
2018-01-13 22:27:24 +03:00
|
|
|
## Origin of the name
|
|
|
|
|
|
|
|
The name *hyperfine* was chosen in reference to the hyperfine levels of caesium 133 which play a crucial role in the
|
2018-09-04 12:44:59 +03:00
|
|
|
[definition of our base unit of time](https://en.wikipedia.org/wiki/Second#History_of_definition)
|
2018-01-13 22:27:24 +03:00
|
|
|
— the second.
|