criterion/benchmark.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
use analysis;
use program::CommandFactory;
use report::{BenchmarkId, ReportContext};
use routine::{Function, Routine};
use std::cell::RefCell;
use std::collections::HashSet;
use std::fmt::Debug;
use std::marker::Sized;
use std::process::Command;
use std::time::Duration;
use {Bencher, Criterion, DurationExt, PlotConfiguration, Throughput};
/// Struct containing all of the configuration options for a benchmark.
pub struct BenchmarkConfig {
pub confidence_level: f64,
pub measurement_time: Duration,
pub noise_threshold: f64,
pub nresamples: usize,
pub sample_size: usize,
pub significance_level: f64,
pub warm_up_time: Duration,
}
/// Struct representing a partially-complete per-benchmark configuration.
struct PartialBenchmarkConfig {
confidence_level: Option<f64>,
measurement_time: Option<Duration>,
noise_threshold: Option<f64>,
nresamples: Option<usize>,
sample_size: Option<usize>,
significance_level: Option<f64>,
warm_up_time: Option<Duration>,
plot_config: PlotConfiguration,
}
impl Default for PartialBenchmarkConfig {
fn default() -> Self {
PartialBenchmarkConfig {
confidence_level: None,
measurement_time: None,
noise_threshold: None,
nresamples: None,
sample_size: None,
significance_level: None,
warm_up_time: None,
plot_config: PlotConfiguration::default(),
}
}
}
impl PartialBenchmarkConfig {
fn to_complete(&self, defaults: &BenchmarkConfig) -> BenchmarkConfig {
BenchmarkConfig {
confidence_level: self.confidence_level.unwrap_or(defaults.confidence_level),
measurement_time: self.measurement_time.unwrap_or(defaults.measurement_time),
noise_threshold: self.noise_threshold.unwrap_or(defaults.noise_threshold),
nresamples: self.nresamples.unwrap_or(defaults.nresamples),
sample_size: self.sample_size.unwrap_or(defaults.sample_size),
significance_level: self
.significance_level
.unwrap_or(defaults.significance_level),
warm_up_time: self.warm_up_time.unwrap_or(defaults.warm_up_time),
}
}
}
pub struct NamedRoutine<T> {
pub id: String,
pub f: Box<RefCell<Routine<T>>>,
}
/// Structure representing a benchmark (or group of benchmarks)
/// which take one parameter.
pub struct ParameterizedBenchmark<T: Debug> {
config: PartialBenchmarkConfig,
values: Vec<T>,
routines: Vec<NamedRoutine<T>>,
throughput: Option<Box<Fn(&T) -> Throughput>>,
}
/// Structure representing a benchmark (or group of benchmarks)
/// which takes no parameters.
pub struct Benchmark {
config: PartialBenchmarkConfig,
routines: Vec<NamedRoutine<()>>,
throughput: Option<Throughput>,
}
/// Common trait for `Benchmark` and `ParameterizedBenchmark`. Not intended to be
/// used outside of Criterion.rs.
pub trait BenchmarkDefinition: Sized {
#[doc(hidden)]
fn run(self, group_id: &str, c: &Criterion);
}
macro_rules! benchmark_config {
($type:tt) => {
/// Changes the size of the sample for this benchmark
///
/// A bigger sample should yield more accurate results if paired with a sufficiently large
/// measurement time.
///
/// Sample size must be at least 2.
///
/// # Panics
///
/// Panics if set to zero or one.
pub fn sample_size(mut self, n: usize) -> Self {
assert!(n >= 2);
if n < 10 {
println!("Warning: Sample sizes < 10 will be disallowed in Criterion.rs 0.3.0.");
}
self.config.sample_size = Some(n);
self
}
/// Changes the warm up time for this benchmark
///
/// # Panics
///
/// Panics if the input duration is zero
pub fn warm_up_time(mut self, dur: Duration) -> Self {
assert!(dur.to_nanos() > 0);
self.config.warm_up_time = Some(dur);
self
}
/// Changes the target measurement time for this benchmark. Criterion will attempt
/// to spent approximately this amount of time measuring the benchmark.
/// With a longer time, the measurement will become more resilient to transitory peak loads
/// caused by external programs.
///
/// # Panics
///
/// Panics if the input duration in zero
pub fn measurement_time(mut self, dur: Duration) -> Self {
assert!(dur.to_nanos() > 0);
self.config.measurement_time = Some(dur);
self
}
/// Changes the number of resamples for this benchmark
///
/// Number of resamples to use for the
/// [bootstrap](http://en.wikipedia.org/wiki/Bootstrapping_(statistics)#Case_resampling)
///
/// A larger number of resamples reduces the random sampling errors, which are inherent to the
/// bootstrap method, but also increases the analysis time.
///
/// # Panics
///
/// Panics if the number of resamples is set to zero
pub fn nresamples(mut self, n: usize) -> Self {
assert!(n > 0);
self.config.nresamples = Some(n);
self
}
/// Changes the noise threshold for this benchmark
///
/// This threshold is used to decide if an increase of `X%` in the execution time is considered
/// significant or should be flagged as noise
///
/// *Note:* A value of `0.02` is equivalent to `2%`
///
/// # Panics
///
/// Panics is the threshold is set to a negative value
pub fn noise_threshold(mut self, threshold: f64) -> Self {
assert!(threshold >= 0.0);
self.config.noise_threshold = Some(threshold);
self
}
/// Changes the confidence level for this benchmark
///
/// The confidence level is used to calculate the
/// [confidence intervals](https://en.wikipedia.org/wiki/Confidence_interval) of the estimated
/// statistics
///
/// # Panics
///
/// Panics if the confidence level is set to a value outside the `(0, 1)` range
pub fn confidence_level(mut self, cl: f64) -> Self {
assert!(cl > 0.0 && cl < 1.0);
self.config.confidence_level = Some(cl);
self
}
/// Changes the [significance level](https://en.wikipedia.org/wiki/Statistical_significance)
/// for this benchmark
///
/// The significance level is used for
/// [hypothesis testing](https://en.wikipedia.org/wiki/Statistical_hypothesis_testing)
///
/// # Panics
///
/// Panics if the significance level is set to a value outside the `(0, 1)` range
pub fn significance_level(mut self, sl: f64) -> Self {
assert!(sl > 0.0 && sl < 1.0);
self.config.significance_level = Some(sl);
self
}
/// Changes the plot configuration for this benchmark.
pub fn plot_config(mut self, new_config: PlotConfiguration) -> Self {
self.config.plot_config = new_config;
self
}
}
}
impl Benchmark {
benchmark_config!(Benchmark);
/// Create a new benchmark group and adds the given function to it.
///
/// # Example
///
/// ```rust
/// # #[macro_use] extern crate criterion;
/// # use criterion::*;
///
/// fn bench(c: &mut Criterion) {
/// // One-time setup goes here
/// c.bench(
/// "my_group",
/// Benchmark::new("my_function", |b| b.iter(|| {
/// // Code to benchmark goes here
/// })),
/// );
/// }
///
/// criterion_group!(benches, bench);
/// criterion_main!(benches);
/// ```
pub fn new<S, F>(id: S, f: F) -> Benchmark
where
S: Into<String>,
F: FnMut(&mut Bencher) + 'static,
{
Benchmark {
config: PartialBenchmarkConfig::default(),
routines: vec![],
throughput: None,
}
.with_function(id, f)
}
/// Create a new benchmark group and add the given program to it.
///
/// The external program must:
///
/// * Read the number of iterations from stdin
/// * Execute the routine to benchmark that many times
/// * Print the elapsed time (in nanoseconds) to stdout
///
/// ```rust,no_run
/// # use std::io::{self, BufRead};
/// # use std::time::Instant;
/// # use std::time::Duration;
/// # trait DurationExt { fn to_nanos(&self) -> u64 { 0 } }
/// # impl DurationExt for Duration {}
/// // Example of an external program that implements this protocol
///
/// fn main() {
/// let stdin = io::stdin();
/// let ref mut stdin = stdin.lock();
///
/// // For each line in stdin
/// for line in stdin.lines() {
/// // Parse line as the number of iterations
/// let iters: u64 = line.unwrap().trim().parse().unwrap();
///
/// // Setup
///
/// // Benchmark
/// let start = Instant::now();
/// // Execute the routine "iters" times
/// for _ in 0..iters {
/// // Code to benchmark goes here
/// }
/// let elapsed = start.elapsed();
///
/// // Teardown
///
/// // Report elapsed time in nanoseconds to stdout
/// println!("{}", elapsed.to_nanos());
/// }
/// }
#[deprecated(
since = "0.2.6",
note = "External program benchmarks were rarely used and are awkward to maintain, so they are scheduled for deletion in 0.3.0"
)]
#[allow(deprecated)]
pub fn new_external<S>(id: S, program: Command) -> Benchmark
where
S: Into<String>,
{
Benchmark {
config: PartialBenchmarkConfig::default(),
routines: vec![],
throughput: None,
}
.with_program(id, program)
}
/// Add a function to the benchmark group.
///
/// # Example:
/// ```
/// # use criterion::Benchmark;
/// Benchmark::new("return 10", |b| b.iter(|| 10))
/// .with_function("return 20", |b| b.iter(|| 20));
/// ```
pub fn with_function<S, F>(mut self, id: S, mut f: F) -> Benchmark
where
S: Into<String>,
F: FnMut(&mut Bencher) + 'static,
{
let routine = NamedRoutine {
id: id.into(),
f: Box::new(RefCell::new(Function::new(move |b, _| f(b)))),
};
self.routines.push(routine);
self
}
/// Add an external program to the benchmark group.
///
/// # Example:
/// ```
/// # use criterion::Benchmark;
/// # use std::process::Command;
/// Benchmark::new("internal", |b| b.iter(|| 10))
/// .with_program("external", Command::new("my_external_benchmark"));
/// ```
#[deprecated(
since = "0.2.6",
note = "External program benchmarks were rarely used and are awkward to maintain, so they are scheduled for deletion in 0.3.0"
)]
pub fn with_program<S>(mut self, id: S, program: Command) -> Benchmark
where
S: Into<String>,
{
let routine = NamedRoutine {
id: id.into(),
f: Box::new(RefCell::new(program)),
};
self.routines.push(routine);
self
}
/// Set the input size for this benchmark group. Used for reporting the
/// throughput.
///
/// ```
/// # use criterion::{Benchmark, Throughput};
/// # use std::process::Command;
/// Benchmark::new("strlen", |b| b.iter(|| "foo".len()))
/// .throughput(Throughput::Bytes(3));
/// ```
pub fn throughput(mut self, throughput: Throughput) -> Benchmark {
self.throughput = Some(throughput);
self
}
}
impl BenchmarkDefinition for Benchmark {
fn run(self, group_id: &str, c: &Criterion) {
let report_context = ReportContext {
output_directory: c.output_directory.clone(),
plotting: c.plotting,
plot_config: self.config.plot_config.clone(),
test_mode: c.test_mode,
};
let config = self.config.to_complete(&c.config);
let num_routines = self.routines.len();
let mut all_ids = vec![];
let mut any_matched = false;
let mut all_directories = HashSet::new();
let mut all_titles = HashSet::new();
for routine in self.routines {
let function_id = if num_routines == 1 && group_id == routine.id {
None
} else {
Some(routine.id)
};
let mut id = BenchmarkId::new(
group_id.to_owned(),
function_id,
None,
self.throughput.clone(),
);
id.ensure_directory_name_unique(&all_directories);
all_directories.insert(id.as_directory_name().to_owned());
id.ensure_title_unique(&all_titles);
all_titles.insert(id.as_title().to_owned());
if c.filter_matches(id.id()) {
any_matched = true;
analysis::common(
&id,
&mut *routine.f.borrow_mut(),
&config,
c,
&report_context,
&(),
self.throughput.clone(),
);
}
all_ids.push(id);
}
if all_ids.len() > 1 && any_matched && c.profile_time.is_none() && !c.test_mode {
c.report.summarize(&report_context, &all_ids);
}
if any_matched {
println!();
}
}
}
impl<T> ParameterizedBenchmark<T>
where
T: Debug + 'static,
{
benchmark_config!(ParameterizedBenchmark);
/// Create a new parameterized benchmark group and adds the given function
/// to it.
/// The function under test must follow the setup - bench - teardown pattern:
///
/// # Example
///
/// ```rust
/// # #[macro_use] extern crate criterion;
/// # use criterion::*;
///
/// fn bench(c: &mut Criterion) {
/// let parameters = vec![1u64, 2u64, 3u64];
///
/// // One-time setup goes here
/// c.bench(
/// "my_group",
/// ParameterizedBenchmark::new(
/// "my_function",
/// |b, param| b.iter(|| {
/// // Code to benchmark using param goes here
/// }),
/// parameters
/// )
/// );
/// }
///
/// criterion_group!(benches, bench);
/// criterion_main!(benches);
/// ```
pub fn new<S, F, I>(id: S, f: F, parameters: I) -> ParameterizedBenchmark<T>
where
S: Into<String>,
F: FnMut(&mut Bencher, &T) + 'static,
I: IntoIterator<Item = T>,
{
ParameterizedBenchmark {
config: PartialBenchmarkConfig::default(),
values: parameters.into_iter().collect(),
routines: vec![],
throughput: None,
}
.with_function(id, f)
}
/// Create a new parameterized benchmark group and add the given program to it.
/// The program under test must implement the following protocol:
///
/// * Read the number of iterations from stdin
/// * Execute the routine to benchmark that many times
/// * Print the elapsed time (in nanoseconds) to stdout
///
/// You can pass the argument to the program in any way you choose.
///
/// ```rust,no_run
/// # use std::io::{self, BufRead};
/// # use std::time::Instant;
/// # use std::time::Duration;
/// # trait DurationExt { fn to_nanos(&self) -> u64 { 0 } }
/// # impl DurationExt for Duration {}
/// # use std::env;
/// // Example of an external program that implements this protocol
///
/// fn main() {
/// let stdin = io::stdin();
/// let ref mut stdin = stdin.lock();
///
/// // You might opt to pass the parameter to the external command as
/// // an environment variable, command line argument, file on disk, etc.
/// let parameter = env::var("PARAMETER").unwrap();
///
/// // For each line in stdin
/// for line in stdin.lines() {
/// // Parse line as the number of iterations
/// let iters: u64 = line.unwrap().trim().parse().unwrap();
///
/// // Setup
///
/// // Benchmark
/// let start = Instant::now();
/// // Execute the routine "iters" times
/// for _ in 0..iters {
/// // Code to benchmark using the parameter goes here
/// }
/// let elapsed = start.elapsed();
///
/// // Teardown
///
/// // Report elapsed time in nanoseconds to stdout
/// println!("{}", elapsed.to_nanos());
/// }
/// }
/// ```
#[deprecated(
since = "0.2.6",
note = "External program benchmarks were rarely used and are awkward to maintain, so they are scheduled for deletion in 0.3.0"
)]
#[allow(deprecated)]
pub fn new_external<S, F, I>(id: S, program: F, parameters: I) -> ParameterizedBenchmark<T>
where
S: Into<String>,
F: FnMut(&T) -> Command + 'static,
I: IntoIterator<Item = T>,
{
ParameterizedBenchmark {
config: PartialBenchmarkConfig::default(),
routines: vec![],
values: parameters.into_iter().collect(),
throughput: None,
}
.with_program(id, program)
}
pub(crate) fn with_functions(
functions: Vec<NamedRoutine<T>>,
parameters: Vec<T>,
) -> ParameterizedBenchmark<T> {
ParameterizedBenchmark {
config: PartialBenchmarkConfig::default(),
values: parameters,
routines: functions,
throughput: None,
}
}
/// Add a function to the benchmark group.
///
/// # Example
///
/// ```
/// # use criterion::ParameterizedBenchmark;
/// ParameterizedBenchmark::new("times 10", |b, i| b.iter(|| i * 10), vec![1, 2, 3])
/// .with_function("times 20", |b, i| b.iter(|| i * 20));
/// ```
pub fn with_function<S, F>(mut self, id: S, f: F) -> ParameterizedBenchmark<T>
where
S: Into<String>,
F: FnMut(&mut Bencher, &T) + 'static,
{
let routine = NamedRoutine {
id: id.into(),
f: Box::new(RefCell::new(Function::new(f))),
};
self.routines.push(routine);
self
}
/// Add an external program to the benchmark group.
///
/// # Example
///
/// ```
/// # use criterion::ParameterizedBenchmark;
/// # use std::process::Command;
/// ParameterizedBenchmark::new("internal", |b, i| b.iter(|| i * 10), vec![1, 2, 3])
/// .with_program("external", |i| {
/// let mut command = Command::new("my_external_benchmark");
/// command.arg(format!("{:?}", i));
/// command
/// });
/// ```
#[deprecated(
since = "0.2.6",
note = "External program benchmarks were rarely used and are awkward to maintain, so they are scheduled for deletion in 0.3.0"
)]
pub fn with_program<S, F>(mut self, id: S, program: F) -> ParameterizedBenchmark<T>
where
S: Into<String>,
F: FnMut(&T) -> Command + 'static,
{
let factory = CommandFactory::new(program);
let routine = NamedRoutine {
id: id.into(),
f: Box::new(RefCell::new(factory)),
};
self.routines.push(routine);
self
}
/// Use the given function to calculate the input size for a given input.
///
/// # Example
///
/// ```
/// # use criterion::{ParameterizedBenchmark, Throughput};
/// # use std::process::Command;
/// ParameterizedBenchmark::new("strlen", |b, s| b.iter(|| s.len()), vec!["foo", "lorem ipsum"])
/// .throughput(|s| Throughput::Bytes(s.len() as u32));
/// ```
pub fn throughput<F>(mut self, throughput: F) -> ParameterizedBenchmark<T>
where
F: Fn(&T) -> Throughput + 'static,
{
self.throughput = Some(Box::new(throughput));
self
}
}
impl<T> BenchmarkDefinition for ParameterizedBenchmark<T>
where
T: Debug + 'static,
{
fn run(self, group_id: &str, c: &Criterion) {
let report_context = ReportContext {
output_directory: c.output_directory.clone(),
plotting: c.plotting,
plot_config: self.config.plot_config.clone(),
test_mode: c.test_mode,
};
let config = self.config.to_complete(&c.config);
let num_parameters = self.values.len();
let num_routines = self.routines.len();
let mut all_ids = vec![];
let mut any_matched = false;
let mut all_directories = HashSet::new();
let mut all_titles = HashSet::new();
for routine in self.routines {
for value in &self.values {
let function_id = if num_routines == 1 && group_id == routine.id {
None
} else {
Some(routine.id.clone())
};
let value_str = if num_parameters == 1 {
None
} else {
Some(format!("{:?}", value))
};
let throughput = self.throughput.as_ref().map(|func| func(value));
let mut id = BenchmarkId::new(
group_id.to_owned(),
function_id,
value_str,
throughput.clone(),
);
id.ensure_directory_name_unique(&all_directories);
all_directories.insert(id.as_directory_name().to_owned());
id.ensure_title_unique(&all_titles);
all_titles.insert(id.as_title().to_owned());
if c.filter_matches(id.id()) {
any_matched = true;
analysis::common(
&id,
&mut *routine.f.borrow_mut(),
&config,
c,
&report_context,
value,
throughput,
);
}
all_ids.push(id);
}
}
if all_ids.len() > 1 && any_matched && c.profile_time.is_none() && !c.test_mode {
c.report.summarize(&report_context, &all_ids);
}
if any_matched {
println!();
}
}
}