hyperfine/README.md

100 lines
3.2 KiB
Markdown
Raw Normal View History

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-01-13 22:27:24 +03:00
2018-01-15 00:26:39 +03:00
A command-line benchmarking tool (*inspired by [bench](https://github.com/Gabriel439/bench)*).
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
2018-01-15 00:12:02 +03:00
![hyperfine](https://i.imgur.com/5OqrGWe.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.
2018-01-31 00:31:31 +03:00
* Statistical outlier detection.
2018-03-22 01:24:20 +03:00
* Export results to various formats (CSV, JSON, Markdown).
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
```
### I/O-heavy programs
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
```
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-01-13 23:07:28 +03:00
## Installation
2018-01-15 00:26:39 +03:00
Hyperfine can be installed via [cargo](https://doc.rust-lang.org/cargo/):
2018-01-13 23:07:28 +03:00
```
cargo install hyperfine
```
2018-01-13 22:27:24 +03:00
2018-01-15 20:34:48 +03:00
### Arch Linux
On Arch Linux, hyperfine can be installed [from the AUR](https://aur.archlinux.org/packages/hyperfine):
```
yaourt -S hyperfine
```
2018-01-20 16:22:26 +03:00
### Ubuntu
Download the appropriate `.deb` package from the [Release page](https://github.com/sharkdp/hyperfine/releases)
and install it via `dpkg`:
```
2018-03-24 22:44:26 +03:00
wget https://github.com/sharkdp/hyperfine/releases/download/v1.0.0/hyperfine_1.0.0_amd64.deb
sudo dpkg -i hyperfine_1.0.0_amd64.deb
2018-01-20 16:22:26 +03:00
```
2018-01-31 02:55:26 +03:00
### Void Linux
Hyperfine can be installed via xbps
```
xbps-install -S hyperfine
```
2018-01-20 16:22:26 +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
[definition of our base unit of time](https://en.wikipedia.org/wiki/Second#Based_on_caesium_microwave_atomic_clock)
— the second.