hyperfine/scripts/README.md

18 lines
478 B
Markdown
Raw Normal View History

2018-12-12 22:30:19 +03:00
This folder contains scripts that can be used in combination with hyperfines `--export-json` option.
### Example:
``` bash
> hyperfine 'sleep 0.020' 'sleep 0.021' 'sleep 0.022' --export-json sleep.json
> python plot_benchmark_results.py sleep.json
```
2019-10-06 22:29:37 +03:00
### Pre-requisites
To make these scripts work, you will need to install `numpy` and `matplotlib`. Install them via
your package manager or `pip`:
```bash
pip install numpy matplotlib # pip3, if you are using python3
```