aboutsummaryrefslogtreecommitdiff
path: root/benches/benchmarks/iter_with_large_setup.rs
blob: 217d27151ac35601c56a1f8ff0988617cbd8a388 (plain)
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
#![allow(deprecated)]

use criterion::{criterion_group, Benchmark, Criterion, Throughput};
use std::time::Duration;

const SIZE: usize = 1024 * 1024;

fn large_setup(c: &mut Criterion) {
    c.bench(
        "iter_with_large_setup",
        Benchmark::new("large_setup", |b| {
            // NOTE: iter_with_large_setup is deprecated. Use iter_batched instead.
            b.iter_with_large_setup(
                || (0..SIZE).map(|i| i as u8).collect::<Vec<_>>(),
                |v| v.clone(),
            )
        })
        .throughput(Throughput::Bytes(SIZE as u64)),
    );
}

fn small_setup(c: &mut Criterion) {
    c.bench(
        "iter_with_large_setup",
        Benchmark::new("small_setup", |b| {
            // NOTE: iter_with_large_setup is deprecated. Use iter_batched instead.
            b.iter_with_large_setup(|| SIZE, |size| size)
        }),
    );
}

fn short_warmup() -> Criterion {
    Criterion::default().warm_up_time(Duration::new(1, 0))
}

criterion_group! {
    name = benches;
    config = short_warmup();
    targets = large_setup, small_setup
}