.. | ||
criterion/cuprate-json-rpc | ||
harness | ||
README.md |
Benches
This directory contains Cuprate's benchmarks and benchmarking utilities.
1. File layout and purpose
This directory is sorted into 4 important categories:
Sub-directory | Purpose |
---|---|
harness/src |
Cuprate's custom benchmarking harness binary |
harness/lib |
Cuprate's custom benchmarking harness library |
harness/* |
Macro-benchmarks for whole crates or sub-systems (using Cuprate's custom benchmarking harness) |
criterion/* |
Micro-benchmarks for crates (e.g. timings for a single function) |
2. Harness
The harness is:
cuprate-harness
; the actual binary crate rancuprate-harness-lib
; the library that other crates hook into
The purpose of the harness is very simple:
- Set-up the benchmark
- Start timer
- Run benchmark
- Output data
The harness runs the benchmarks found in harness/
.
The way benchmarks "plug-in" to the harness is simply by implementing cuprate_harness_lib::Benchmark
.
See cuprate-harness-lib
crate documentation for a user-guide:
cargo doc --open --package cuprate-harness-lib
2.1 Creating a harness benchmark
- Create a new crate inside
benches/harness
(consider copyingbenches/harness/test
as a base) - Pull in
cuprate_harness_lib
as a dependency - Implement
cuprate_harness_lib::Benchmark
- Add a feature inside
cuprate_harness
for your benchmark
2.2 Running a harness benchmark
After your benchmark is implemented, run this command:
cargo run --release --package cuprate-harness --features $YOUR_BENCHMARK_CRATE_FEATURE
For example, to run the test benchmark:
cargo run --release --package cuprate-harness --features test
3. Criterion
Each sub-directory in here is a crate that uses Criterion for timing single functions and/or groups of functions.
They are generally be small in scope.
See criterion/cuprate-json-rpc
for an example.
3.1 Creating a Criterion benchmark
- Copy
criterion/test
as base - Read the
Getting Started
section of https://bheisler.github.io/criterion.rs/book - Get started
3.1 Running a Criterion benchmark
To run all Criterion benchmarks, run this from the repository root:
cargo bench
To run specific package(s), use:
cargo bench --package $CRITERION_BENCHMARK_CRATE_NAME
For example:
cargo bench --package cuprate-criterion-json-rpc