Skip to content

Commit

Permalink
Increased benchmark size to 10M
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanMarcus committed Nov 19, 2024
1 parent 4e49db8 commit a588a5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arrow-cast/benches/cast_runend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use arrow_schema::DataType;
use criterion::*;

fn criterion_benchmark(c: &mut Criterion) {
let run_ends: Vec<i32> = (1..1_000_001).collect();
let run_ends: Vec<i32> = (1..10_000_001).collect();
let values: Vec<i32> = iter::repeat(100).take(run_ends.len()).collect();
let ra = RunArray::try_new(&Int32Array::from(run_ends), &Int32Array::from(values)).unwrap();

Expand Down

0 comments on commit a588a5a

Please sign in to comment.