Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
generic lexsort usage in benches (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
sundy-li authored Jul 29, 2021
1 parent 95fe10a commit b3e4c2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benches/sort_kernel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fn bench_lexsort(arr_a: &dyn Array, array_b: &dyn Array) {
},
];

criterion::black_box(lexsort(&columns, None).unwrap());
criterion::black_box(lexsort::<u32>(&columns, None).unwrap());
}

fn bench_sort(arr_a: &dyn Array) {
Expand Down

0 comments on commit b3e4c2c

Please sign in to comment.