5 releases (breaking)

0.5.0 Apr 19, 2024
0.4.0 Feb 3, 2024
0.3.0 Jan 25, 2024
0.2.0 Dec 6, 2023
0.1.0 Oct 29, 2023

#60 in Profiling

Download history 11/week @ 2024-01-25 36/week @ 2024-02-01 301/week @ 2024-02-08 256/week @ 2024-02-15 268/week @ 2024-02-22 112/week @ 2024-02-29 63/week @ 2024-03-07 61/week @ 2024-03-14 68/week @ 2024-03-21 91/week @ 2024-03-28 347/week @ 2024-04-04 202/week @ 2024-04-11 353/week @ 2024-04-18

1,002 downloads per month

MIT license

84KB
2K SLoC

Tango.rs

Tango Bench Tango Bench

It used to be that benchmarking required a significant amount of time and numerous iterations to arrive at meaningful results, which was particularly arduous when trying to detect subtle changes, such as those within the range of a few percentage points.

Introducing Tango.rs, a novel benchmarking framework that employs paired benchmarking to assess code performance. This approach capitalizes on the fact that it's far more efficient to measure the performance difference between two simultaneously executing functions compared to two functions executed consecutively.

Features:

  • very high sensitivity to changes which allows to converge on results quicker than traditional (pointwise) approach. Often the fraction of a second is enough;
  • ability to compare different versions of the same code from different VCS commits (A/B-benchmarking);
  • macOS, Linux and Windows support;

1 second, 1 percent, 1 error

Compared to traditional pointwise benchmarking, paired benchmarking is significantly more sensitive to changes. This heightened sensitivity enables the early detection of statistically significant performance variations.

Tango is designed to have the capability to detect a 1% change in performance within just 1 second in at least 9 out of 10 test runs.

Prerequirements

  1. Rust and Cargo toolchain installed (Rust stable is supported on Linux/macOS, nightly is required for Windows)
  2. (Optional) cargo-export installed

Getting started

  1. Add cargo dependency and create new benchmark:

    [dev-dependencies]
    tango-bench = "0.5"
    
    [[bench]]
    name = "factorial"
    harness = false
    
  2. allows rustc to export symbols for dynamic linking from benchmarks

    • (Linux/macOS) Add build script (build.rs) with following content

      fn main() {
          println!("cargo:rustc-link-arg-benches=-rdynamic");
          println!("cargo:rerun-if-changed=build.rs");
      }
      
    • (Windows, nightly required) Add following code to cargo config (.cargo/config)

      [build]
      rustflags = ["-Zexport-executable-symbols"]
      
  3. Add benches/factorial.rs with the following content:

    use std::hint::black_box;
    use tango_bench::{benchmark_fn, tango_benchmarks, tango_main, IntoBenchmarks};
    
    pub fn factorial(mut n: usize) -> usize {
        let mut result = 1usize;
        while n > 0 {
            result = result.wrapping_mul(black_box(n));
            n -= 1;
        }
        result
    }
    
    fn factorial_benchmarks() -> impl IntoBenchmarks {
        [
            benchmark_fn("factorial", |b| b.iter(|| factorial(500))),
        ]
    }
    
    tango_benchmarks!(factorial_benchmarks());
    tango_main!();
    
  4. Build and export benchmark to target/benchmarks directory:

    $ cargo export target/benchmarks -- bench --bench=factorial
    
  5. Now lets try to modify factorial.rs and make factorial faster :)

    fn factorial_benchmarks() -> impl IntoBenchmarks {
        [
            benchmark_fn("factorial", |b| b.iter(|| factorial(495))),
        ]
    }
    
  6. Now we can compare new version with already built one:

    $ cargo bench -q --bench=factorial -- compare target/benchmarks/factorial
    factorial             [ 375.5 ns ... 369.0 ns ]      -1.58%*
    

The result shows that indeed there is indeed ~1% difference between factorial(500) and factorial(495).

Additional examples are available in examples directory.

Runner arguments

There are several arguments you can pass to the compare command to change it behavior

  • -t, --time – how long to run each benchmark (in seconds)
  • s, --samples – how much samples to gather from each benchmark
  • -f – filter benchmarks by name. Glob patterns are supported (eg. */bench_name/{2,4,8}/**)
  • o, --filter-outliers – additionally filter outliers
  • --fail-threshold – do fail if new version is slower than baseline on a given percentage
  • --fail-fast - do fail after first benchmark exceeding fail threshold, not after the whole suite

Contributing

The project is in its early stages so any help will be appreciated. Here are some ideas you might find interesting

  • find a way to provide a more user friendly API for registering functions in the system
  • if you're a library author, trying out tango and providing feedback will be very useful

Dependencies

~2–13MB
~137K SLoC