We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6e29f7 commit d20f9b6Copy full SHA for d20f9b6
1 file changed
crates/consistent-hashing/benchmarks/performance.rs
@@ -40,7 +40,9 @@ fn throughput_benchmark(c: &mut Criterion) {
40
for key in keys {
41
let mut h = DefaultHasher::default();
42
key.hash(&mut h);
43
- black_box(ConsistentChooseKHasher::new(h, k).prev_with_vec(*n + k, &mut res));
+ black_box(
44
+ ConsistentChooseKHasher::new(h, k).prev_with_vec(*n + k, &mut res),
45
+ );
46
}
47
},
48
criterion::BatchSize::SmallInput,
0 commit comments