MCPcopy Create free account
hub / github.com/apache/arrow-rs / criterion_benchmark

Function criterion_benchmark

arrow-array/benches/record_batch.rs:82–90  ·  view source on GitHub ↗
(c: &mut Criterion)

Source from the content-addressed store, hash-verified

80}
81
82fn 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
92criterion_group!(benches, criterion_benchmark);
93criterion_main!(benches);

Callers

nothing calls this directly

Calls 2

project_benchmarkFunction · 0.85
iterMethod · 0.45

Tested by

no test coverage detected