Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions encodings/runend/benches/run_end_take.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ const BENCH_ARGS: &[TakeBenchArgs] = &[
// Dense unsorted takes should build the logical-position-to-run table.
TakeBenchArgs {
name: "dense_table",
array_len: 8_192,
run_step: 1,
array_len: 32_768,
run_step: 4,
take_len: 2_048,
pattern: IndexPattern::ReverseDense,
validity: IndexValidity::NonNullable,
Expand All @@ -93,8 +93,8 @@ const BENCH_ARGS: &[TakeBenchArgs] = &[
// Nullable indices exercise masked stats and table lookup.
TakeBenchArgs {
name: "nullable_dense_table",
array_len: 8_192,
run_step: 1,
array_len: 32_768,
run_step: 4,
take_len: 2_048,
pattern: IndexPattern::ReverseDense,
validity: IndexValidity::EveryFourthNull,
Expand Down
Loading
Loading