rbenchmark

Crates.iorbenchmark
lib.rsrbenchmark
version0.1.0
sourcesrc
created_at2023-03-10 15:34:36.13744
updated_at2023-03-10 15:34:36.13744
descriptionLibrary for evaluating the performance of your computer
homepage
repositoryhttps://github.com/CryptoGladi/rbenchmark
max_upload_size
id806515
size16,302
(CryptoGladi)

documentation

README

rbenchmark

Library for evaluating the performance of your computer, written in pure Rust

Example

use rbenchmark::prelude::*;

let mut runner = BenchmarkRunner::default();
let result = runner.run_all(|_progress | {}).unwrap();
println!("{:?}", result);

Features

  • Write your own benchmarks and run them.
  • Write your own runner for benchmarks
  • Set the time of the benchmark
  • Multi-core support
  • Adjust which benchmarks to run
  • Callback functions
Commit count: 26

cargo fmt