This project is an effort to reproducibly benchmark "in the wild" Rust code against newer compiler versions to detect performance regressions. The data is currently published to https://lolbench.rs.
Want to contribute and are looking for the list of benchmarks we'd like help adding?
- rustup
- clang (Linux only)
$ git submodule update --init
$ cargo test-core
cargo build-website
runs the website generator using the provided data directory. Pass the--help
flag to see what's required.cargo fmt-core
formats only those crates which should be rustfmt'd -- notably our fork of criterion isn't rustfmt-friendly right now. Useful forcargo watch -x fmt-core
.cargo test-core
runs the tests for every non-benchmark crate except for criterion. At writing, that'slolbench
,lolbench_support
,lolbench_extractor
, andmarky_mark
.cargo new-bench-crate
runs a lolbench command to create a new benchmark crate in the benches directory.cargo build-all [--release]
builds a binary for every benchmark function. caution: this will generate dozens of gigabytes of data in your target directory.cargo test-all
runs the test for every benchmark function, which consists of warming it up and running through a couple of iterations. caution: this will generate dozens of gigabytes of data in your target directory.
lolbench is distributed under the terms of both the MIT license and the Apache License (Version 2.0). Some included benchmarks have their own separate licenses, see those directories and their Cargo.toml metadata for details.