diff --git a/benches/bitpacking.rs b/benches/bitpacking.rs index 03d4a75..0230873 100644 --- a/benches/bitpacking.rs +++ b/benches/bitpacking.rs @@ -70,8 +70,7 @@ fn throughput(c: &mut Criterion) { const N: usize = 1024 * NUM_BATCHES; const OUTPUT_BATCH_SIZE: usize = 128 * WIDTH / size_of::(); - let mut group = c - .benchmark_group("throughput"); + let mut group = c.benchmark_group("throughput"); group.throughput(Throughput::Bytes(N as u64 * size_of::() as u64)); let mut values: Vec = (0..N).map(|i| (i % 8) as u16).collect(); let mut packed = vec![0u16; NUM_BATCHES * OUTPUT_BATCH_SIZE]; diff --git a/benches/delta.rs b/benches/delta.rs index 7194f0d..4c372ae 100644 --- a/benches/delta.rs +++ b/benches/delta.rs @@ -49,8 +49,7 @@ fn throughput(c: &mut Criterion) { const N: usize = 1024 * NUM_BATCHES; const OUTPUT_BATCH_SIZE: usize = 128 * WIDTH / size_of::(); - let mut group = c - .benchmark_group("throughput"); + let mut group = c.benchmark_group("throughput"); group.throughput(Throughput::Bytes(N as u64 * size_of::() as u64)); let mut values: Vec = (0..N).map(|i| (i % 8) as u16).collect(); let mut packed = vec![0u16; NUM_BATCHES * OUTPUT_BATCH_SIZE];