(c: &mut Criterion)
| 80 | } |
| 81 | |
| 82 | fn criterion_benchmark(c: &mut Criterion) { |
| 83 | [10, 100, 1000].iter().for_each(|&column_count| { |
| 84 | [1, column_count / 2, column_count - 1] |
| 85 | .iter() |
| 86 | .for_each(|&projection_size| { |
| 87 | project_benchmark(c, column_count, 8192, projection_size); |
| 88 | }) |
| 89 | }); |
| 90 | } |
| 91 | |
| 92 | criterion_group!(benches, criterion_benchmark); |
| 93 | criterion_main!(benches); |
nothing calls this directly
no test coverage detected