stperf

Crates.iostperf
lib.rsstperf
version0.1.4
sourcesrc
created_at2018-03-25 02:51:15.667643
updated_at2018-04-01 21:20:53.060667
descriptionSimple profiling utility for single-threaded applications
homepagehttps://github.com/neonmoe/stperf
repositoryhttps://github.com/neonmoe/stperf
max_upload_size
id57288
size30,134
Jens Pitkänen (neonmoe)

documentation

https://docs.rs/stperf

README

stperf

Crates.io Documentation CI

stperf (single-threaded performance profiler) is a very simple profiling utility for single-threaded applications, inspired by hprof.

Usage

Check out the docs.

#[macro_use]
extern crate stperf;

fn main() {
    use std::thread;
    use std::time::Duration;

    let process = || {
        perf_measure!("processing");
        thread::sleep(Duration::from_millis(100));
    };

    for _ in 0..2 {
        perf_measure!("main");
        for _ in 0..2 {
            perf_measure!("inner operations");
            process();
        }
        process();
    }

    stperf::print();
}

Will print out:

╶──┬╼ main                 - 100.0%, 300 ms/loop, 2 samples
   ├──┬╼ inner operations  -  66.7%, 200 ms/loop, 4 samples
   │  └───╼ processing     - 100.0%, 200 ms/loop, 4 samples
   └───╼ processing        -  33.3%, 100 ms/loop, 2 samples

License

This crate is distributed under the terms of the ISC license.

Commit count: 15

cargo fmt