Skip to content

Commit 9299b4b

Browse files
committed
vendor random generation
1 parent fc1f7a5 commit 9299b4b

File tree

2 files changed

+34
-4
lines changed

2 files changed

+34
-4
lines changed

datafusion/functions-aggregate/benches/array_agg.rs

+26-2
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,23 @@ use std::sync::Arc;
1919

2020
use arrow::array::{
2121
Array, ArrayRef, ArrowPrimitiveType, AsArray, ListArray, NullBufferBuilder,
22+
PrimitiveArray,
2223
};
2324
use arrow::datatypes::{Field, Int64Type};
24-
use arrow::util::bench_util::create_primitive_array;
2525
use criterion::{black_box, criterion_group, criterion_main, Criterion};
2626
use datafusion_expr::Accumulator;
2727
use datafusion_functions_aggregate::array_agg::ArrayAggAccumulator;
2828

2929
use arrow::buffer::OffsetBuffer;
30-
use arrow::util::test_util::seedable_rng;
3130
use rand::distributions::{Distribution, Standard};
31+
use rand::prelude::StdRng;
3232
use rand::Rng;
33+
use rand::SeedableRng;
34+
35+
/// Returns fixed seedable RNG
36+
pub fn seedable_rng() -> StdRng {
37+
StdRng::seed_from_u64(42)
38+
}
3339

3440
fn merge_batch_bench(c: &mut Criterion, name: &str, values: ArrayRef) {
3541
let list_item_data_type = values.as_list::<i32>().values().data_type().clone();
@@ -46,6 +52,24 @@ fn merge_batch_bench(c: &mut Criterion, name: &str, values: ArrayRef) {
4652
});
4753
}
4854

55+
pub fn create_primitive_array<T>(size: usize, null_density: f32) -> PrimitiveArray<T>
56+
where
57+
T: ArrowPrimitiveType,
58+
Standard: Distribution<T::Native>,
59+
{
60+
let mut rng = seedable_rng();
61+
62+
(0..size)
63+
.map(|_| {
64+
if rng.gen::<f32>() < null_density {
65+
None
66+
} else {
67+
Some(rng.gen())
68+
}
69+
})
70+
.collect()
71+
}
72+
4973
/// Create List array with the given item data type, null density, null locations and zero length lists density
5074
/// Creates an random (but fixed-seeded) array of a given size and null density
5175
pub fn create_list_array<T>(

datafusion/functions/benches/chr.rs

+8-2
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,21 @@
1717

1818
extern crate criterion;
1919

20-
use arrow::{array::PrimitiveArray, datatypes::Int64Type, util::test_util::seedable_rng};
20+
use arrow::{array::PrimitiveArray, datatypes::Int64Type};
2121
use criterion::{black_box, criterion_group, criterion_main, Criterion};
2222
use datafusion_expr::{ColumnarValue, ScalarFunctionArgs};
2323
use datafusion_functions::string::chr;
24-
use rand::Rng;
24+
use rand::{Rng, SeedableRng};
2525

2626
use arrow::datatypes::DataType;
27+
use rand::rngs::StdRng;
2728
use std::sync::Arc;
2829

30+
/// Returns fixed seedable RNG
31+
pub fn seedable_rng() -> StdRng {
32+
StdRng::seed_from_u64(42)
33+
}
34+
2935
fn criterion_benchmark(c: &mut Criterion) {
3036
let cot_fn = chr();
3137
let size = 1024;

0 commit comments

Comments
 (0)