This is a measurement plugin for Criterion.rs that provides measurements using Linux's perf interface.
criterion-linux-perf uses the
perf-event
crate and
supports a subset of the events provided by that crate. If you require
more events than the current selection, please open an
issue to request
additions.
The following code shows on how to count branches when creating an empty string:
```rust use criterion::{criteriongroup, criterionmain, Criterion}; use criterionlinuxperf::{PerfMeasurement, PerfMode};
fn timeit(crit: &mut Criterion
criteriongroup!( name = benches; config = Criterion::default().withmeasurement(PerfMeasurement::new(PerfMode::Branches)); targets = timeit ); criterion_main!(benches); ```
I am aware of one other crate that provides the same functionality,
criterion-perf-events
. While
it provides a much wider coverage of the available perf event types, it
depends on perfcnt
which only
builds on Rust nightly. This crate depends on
perf-event
, which does not
have that limitation.