(b: &mut Bencher, n: usize)
| 69 | } |
| 70 | |
| 71 | fn bench_histogram_parallel(b: &mut Bencher, n: usize) { |
| 72 | let data = bench_data(n); |
| 73 | b.iter(|| histogram_parallel(black_box(&data))); |
| 74 | } |
| 75 | |
| 76 | fn bench_histogram_simple(b: &mut Bencher, n: usize) { |
| 77 | let data = bench_data(n); |
nothing calls this directly
no test coverage detected