1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-04-03 15:27:45 +02:00

benchmarks: added hyperfine

This commit is contained in:
tiyn 2023-08-09 03:31:30 +02:00
parent 85c7f15d88
commit fdf05f68fa
2 changed files with 36 additions and 0 deletions

8
wiki/benchmark.md Normal file
View File

@ -0,0 +1,8 @@
# Benchmark
A benchmark is the act of running a program or operation in order to assess its performance.
Benchmarks can use a range of criteria to compare programs with one another.
## Tools
- [Hyperfine](/wiki/linux/hyperfine.md) is a benchmarking tool for [Linux](/wiki/linux/linux.md).

28
wiki/linux/hyperfine.md Normal file
View File

@ -0,0 +1,28 @@
# Hyperfine
[Hyperfine](https://github.com/sharkdp/hyperfine) is a [benchmarking](/wiki/benchmark.md) tool.
## Usage
### Benchmark One or More Programs
To benchmark a program it is recommended to warm up the cache before.
This can be done as shown in the following command.
```sh
hyperfine --warmup 5 'sleep 0.3'
```
Unless specified otherwise at least 10 runs will be made to benchmark a program.
To change this the `--runs` flag can be used.
An example of it is given in the following command.
```sh
hyperfine --warmup 5 --runs 3 'sleep 0.3'
```
To compare two programs simply append the program to compare to as shown in the following command.
```sh
hyperfine --warmup 5 'sleep 0.3' 'sleep 0.4'
```