Skip to content

Commit

Permalink
Always use std::hint::black_box().
Browse files Browse the repository at this point in the history
This has been stable since Rust 1.66 and our MSRV is now 1.70.

The feature is kept around for now as removing it would break
people's configurations if they were enabling it.

It can be removed at the next semver break.

Supercedes #701.
Fixes #633.
Fixes #700.
  • Loading branch information
waywardmonkeys committed Jul 25, 2024
1 parent 1a18e88 commit d68bb96
Show file tree
Hide file tree
Showing 15 changed files with 35 additions and 53 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
- MSRV bumped to 1.70

### Changed
- The `real_blackbox` feature no longer has any impact. Criterion always uses `std::hint::black_box()` now.
Users of `criterion::black_box()` should switch to `std::hint::black_box()`.

### Fixed

- gnuplot version is now correctly detected when using certain Windows binaries/configurations that used to fail
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ stable = [
]
default = ["rayon", "plotters", "cargo_bench_support"]

# Enable use of the nightly-only test::black_box function to discourage compiler optimizations.
# This is a legacy feature that no longer does anything, but removing it would be a semver break.
real_blackbox = []

# Enable async/await support
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ harness = false
Next, define a benchmark by creating a file at `$PROJECT/benches/my_benchmark.rs` with the following contents:

```rust
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use std::hint::black_box;
use criterion::{criterion_group, criterion_main, Criterion};

fn fibonacci(n: u64) -> u64 {
match n {
Expand Down
4 changes: 2 additions & 2 deletions bencher_compat/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
extern crate criterion;

pub use std::hint::black_box;
pub use criterion::Criterion;
pub use criterion::black_box;
use criterion::measurement::WallTime;

/// Stand-in for `bencher::Bencher` which uses Criterion.rs to perform the benchmark instead.
Expand Down Expand Up @@ -60,4 +60,4 @@ macro_rules! benchmark_main {
($($group_name:path,)+) => {
benchmark_main!($($group_name),+);
};
}
}
3 changes: 2 additions & 1 deletion benches/benchmarks/custom_measurement.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
use criterion::{
black_box, criterion_group,
criterion_group,
measurement::{Measurement, ValueFormatter},
Criterion, Throughput,
};
use std::hint::black_box;
use std::time::{Duration, Instant};

struct HalfSecFormatter;
Expand Down
6 changes: 2 additions & 4 deletions book/src/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,11 @@ To see this, consider the following benchmark:

```rust
fn compare_small(c: &mut Criterion) {
use criterion::black_box;

let mut group = c.benchmark_group("small");
group.bench_with_input("unlooped", 10, |b, i| b.iter(|| i + 10));
group.bench_with_input("looped", 10, |b, i| b.iter(|| {
for _ in 0..10000 {
black_box(i + 10);
std::hint::black_box(i + 10);
}
}));
group.finish();
Expand Down Expand Up @@ -111,7 +109,7 @@ Process](./analysis.md) page for more details on how Criterion.rs performs its m
the [Timing Loops](./user_guide/timing_loops.md) page for details on choosing a timing loop to minimize
measurement overhead.

### When Should I Use `criterion::black_box`?
### When Should I Use `std::hint::black_box`?

`black_box` is a function which prevents certain compiler optimizations. Benchmarks are often
slightly artificial in nature and the compiler can take advantage of that to generate faster code
Expand Down
6 changes: 4 additions & 2 deletions book/src/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ file at `$PROJECT/benches/my_benchmark.rs` with the following contents (see the
below for an explanation of this code):

```rust
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use criterion::{criterion_group, criterion_main, Criterion};
use std::hint::black_box;
use mycrate::fibonacci;

fn criterion_benchmark(c: &mut Criterion) {
Expand Down Expand Up @@ -78,7 +79,8 @@ median [25.733 us 25.988 us] med. abs. dev. [234.09 ns 544.07 ns]
Let's go back and walk through that benchmark code in more detail.

```rust
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use criterion::{criterion_group, criterion_main, Criterion};
use std::hint::black_box;
use mycrate::fibonacci;
```

Expand Down
3 changes: 2 additions & 1 deletion book/src/user_guide/comparing_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ graphs to show the differences in performance between them. First, lets create a
benchmark. We can even combine this with benchmarking over a range of inputs.

```rust
use criterion::{black_box, criterion_group, criterion_main, Criterion, BenchmarkId};
use criterion::{criterion_group, criterion_main, Criterion, BenchmarkId};
use std::hint::black_box;

fn fibonacci_slow(n: u64) -> u64 {
match n {
Expand Down
3 changes: 2 additions & 1 deletion book/src/user_guide/custom_test_framework.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ Let's take a look at an example benchmark (note that this example assumes you're
#![feature(custom_test_frameworks)]
#![test_runner(criterion::runner)]

use criterion::{Criterion, black_box};
use criterion::Criterion;
use criterion_macro::criterion;
use std::hint::black_box;

fn fibonacci(n: u64) -> u64 {
match n {
Expand Down
8 changes: 0 additions & 8 deletions book/src/user_guide/known_limitations.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,3 @@ This results in several limitations:
* It is not possible to benchmark functions in crates that do not provide an `rlib`.

Criterion.rs cannot currently solve these issues. An [experimental RFC](https://github.com/rust-lang/rust/issues/50297) is being implemented to enable custom test and benchmarking frameworks.

Second, Criterion.rs provides a stable-compatible replacement for the `black_box` function provided by the standard test crate. This replacement is not as reliable as the official one, and it may allow dead-code-elimination to affect the benchmarks in some circumstances. If you're using a Nightly build of Rust, you can add the `real_blackbox` feature to your dependency on Criterion.rs to use the standard `black_box` function instead.

Example:

```toml
criterion = { version = '...', features=['real_blackbox'] }
```
6 changes: 4 additions & 2 deletions book/src/user_guide/migrating_from_libtest.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ criterion = "0.5.1"
The next step is to update the imports:

```rust
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use criterion::{criterion_group, criterion_main, Criterion};
use std::hint::black_box;
```

Then, we can change the `bench_fib` function. Remove the `#[bench]` and change
Expand All @@ -72,7 +73,8 @@ criterion_main!(benches);
And that's it! The complete migrated benchmark code is below:

```rust
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use criterion::{criterion_group, criterion_main, Criterion};
use std::hint::black_box;

fn fibonacci(n: u64) -> u64 {
match n {
Expand Down
5 changes: 3 additions & 2 deletions macro/benches/test_macro_bench.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#![feature(custom_test_frameworks)]
#![test_runner(criterion::runner)]

use criterion::{Criterion, black_box};
use std::hint::black_box;
use criterion::Criterion;
use criterion_macro::criterion;

fn fibonacci(n: u64) -> u64 {
Expand All @@ -24,4 +25,4 @@ fn bench_simple(c: &mut Criterion) {
#[criterion(custom_criterion())]
fn bench_custom(c: &mut Criterion) {
c.bench_function("Fibonacci-Custom", |b| b.iter(|| fibonacci(black_box(20))));
}
}
8 changes: 3 additions & 5 deletions src/bencher.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::hint::black_box;
use std::time::Duration;
use std::time::Instant;

use crate::black_box;
use crate::measurement::{Measurement, WallTime};
use crate::BatchSize;

Expand Down Expand Up @@ -103,7 +103,6 @@ impl<'a, M: Measurement> Bencher<'a, M> {
/// ```rust
/// #[macro_use] extern crate criterion;
/// use criterion::*;
/// use criterion::black_box;
/// use std::time::Instant;
///
/// fn foo() {
Expand All @@ -115,7 +114,7 @@ impl<'a, M: Measurement> Bencher<'a, M> {
/// b.iter_custom(|iters| {
/// let start = Instant::now();
/// for _i in 0..iters {
/// black_box(foo());
/// std::hint::black_box(foo());
/// }
/// start.elapsed()
/// })
Expand Down Expand Up @@ -461,7 +460,6 @@ impl<'a, 'b, A: AsyncExecutor, M: Measurement> AsyncBencher<'a, 'b, A, M> {
/// ```rust
/// #[macro_use] extern crate criterion;
/// use criterion::*;
/// use criterion::black_box;
/// use criterion::async_executor::FuturesExecutor;
/// use std::time::Instant;
///
Expand All @@ -475,7 +473,7 @@ impl<'a, 'b, A: AsyncExecutor, M: Measurement> AsyncBencher<'a, 'b, A, M> {
/// async move {
/// let start = Instant::now();
/// for _i in 0..iters {
/// black_box(foo().await);
/// std::hint::black_box(foo().await);
/// }
/// start.elapsed()
/// }
Expand Down
24 changes: 2 additions & 22 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

#![warn(missing_docs)]
#![warn(bare_trait_objects)]
#![cfg_attr(feature = "real_blackbox", feature(test))]
#![allow(
clippy::just_underscores_and_digits, // Used in the stats code
clippy::transmute_ptr_to_ptr, // Used in the stats code
Expand All @@ -36,9 +35,6 @@ extern crate quickcheck;
use regex::Regex;
use serde::{Deserialize, Serialize};

#[cfg(feature = "real_blackbox")]
extern crate test;

// Needs to be declared before other modules
// in order to be usable there.
#[macro_use]
Expand Down Expand Up @@ -144,25 +140,9 @@ fn debug_enabled() -> bool {

/// A function that is opaque to the optimizer, used to prevent the compiler from
/// optimizing away computations in a benchmark.
///
/// This variant is backed by the (unstable) test::black_box function.
#[cfg(feature = "real_blackbox")]
#[deprecated(note = "use `std::hint::black_box()` instead")]
pub fn black_box<T>(dummy: T) -> T {
test::black_box(dummy)
}

/// A function that is opaque to the optimizer, used to prevent the compiler from
/// optimizing away computations in a benchmark.
///
/// This variant is stable-compatible, but it may cause some performance overhead
/// or fail to prevent code from being eliminated.
#[cfg(not(feature = "real_blackbox"))]
pub fn black_box<T>(dummy: T) -> T {
unsafe {
let ret = std::ptr::read_volatile(&dummy);
std::mem::forget(dummy);
ret
}
std::hint::black_box(dummy)
}

/// Argument to [`Bencher::iter_batched`] and [`Bencher::iter_batched_ref`] which controls the
Expand Down
3 changes: 2 additions & 1 deletion src/routine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ use crate::benchmark::BenchmarkConfig;
use crate::connection::OutgoingMessage;
use crate::measurement::Measurement;
use crate::report::{BenchmarkId, Report, ReportContext};
use crate::{black_box, ActualSamplingMode, Bencher, Criterion};
use crate::{ActualSamplingMode, Bencher, Criterion};
use std::hint::black_box;
use std::marker::PhantomData;
use std::time::Duration;

Expand Down

0 comments on commit d68bb96

Please sign in to comment.