Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
5 changes: 5 additions & 0 deletions datafusion/functions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -315,3 +315,8 @@ required-features = ["unicode_expressions"]
harness = false
name = "factorial"
required-features = ["math_expressions"]

[[bench]]
harness = false
name = "floor_ceil"
required-features = ["math_expressions"]
135 changes: 135 additions & 0 deletions datafusion/functions/benches/floor_ceil.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.

extern crate criterion;

use arrow::datatypes::{DataType, Field, Float64Type};
use arrow::util::bench_util::create_primitive_array;
use criterion::{Criterion, SamplingMode, criterion_group, criterion_main};
use datafusion_common::ScalarValue;
use datafusion_common::config::ConfigOptions;
use datafusion_expr::{ColumnarValue, ScalarFunctionArgs};
use datafusion_functions::math::{ceil, floor};
use std::hint::black_box;
use std::sync::Arc;
use std::time::Duration;

fn criterion_benchmark(c: &mut Criterion) {
let floor_fn = floor();
let ceil_fn = ceil();
let config_options = Arc::new(ConfigOptions::default());

for size in [1024, 4096, 8192] {
let mut group = c.benchmark_group(format!("floor_ceil size={size}"));
group.sampling_mode(SamplingMode::Flat);
group.sample_size(10);
group.measurement_time(Duration::from_secs(10));

// Float64 array benchmark
let f64_array = Arc::new(create_primitive_array::<Float64Type>(size, 0.1));
let batch_len = f64_array.len();
let f64_args = vec![ColumnarValue::Array(f64_array)];

group.bench_function("floor_f64_array", |b| {
b.iter(|| {
let args_cloned = f64_args.clone();
black_box(
floor_fn
.invoke_with_args(ScalarFunctionArgs {
args: args_cloned,
arg_fields: vec![
Field::new("a", DataType::Float64, true).into(),
],
number_rows: batch_len,
return_field: Field::new("f", DataType::Float64, true).into(),
config_options: Arc::clone(&config_options),
})
.unwrap(),
)
})
});

group.bench_function("ceil_f64_array", |b| {
b.iter(|| {
let args_cloned = f64_args.clone();
black_box(
ceil_fn
.invoke_with_args(ScalarFunctionArgs {
args: args_cloned,
arg_fields: vec![
Field::new("a", DataType::Float64, true).into(),
],
number_rows: batch_len,
return_field: Field::new("f", DataType::Float64, true).into(),
config_options: Arc::clone(&config_options),
})
.unwrap(),
)
})
});

// Scalar benchmark (the optimization we added)
let scalar_args = vec![ColumnarValue::Scalar(ScalarValue::Float64(Some(
std::f64::consts::PI,
)))];

group.bench_function("floor_f64_scalar", |b| {
b.iter(|| {
let args_cloned = scalar_args.clone();
black_box(
floor_fn
.invoke_with_args(ScalarFunctionArgs {
args: args_cloned,
arg_fields: vec![
Field::new("a", DataType::Float64, false).into(),
],
number_rows: 1,
return_field: Field::new("f", DataType::Float64, false)
.into(),
config_options: Arc::clone(&config_options),
})
.unwrap(),
)
})
});

group.bench_function("ceil_f64_scalar", |b| {
b.iter(|| {
let args_cloned = scalar_args.clone();
black_box(
ceil_fn
.invoke_with_args(ScalarFunctionArgs {
args: args_cloned,
arg_fields: vec![
Field::new("a", DataType::Float64, false).into(),
],
number_rows: 1,
return_field: Field::new("f", DataType::Float64, false)
.into(),
config_options: Arc::clone(&config_options),
})
.unwrap(),
)
})
});

group.finish();
}
}

criterion_group!(benches, criterion_benchmark);
criterion_main!(benches);
25 changes: 25 additions & 0 deletions datafusion/functions/src/math/ceil.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,31 @@ impl ScalarUDFImpl for CeilFunc {
}

fn invoke_with_args(&self, args: ScalarFunctionArgs) -> Result<ColumnarValue> {
let arg = &args.args[0];

// Scalar fast path for float types - avoid array conversion overhead
// Note: Decimal types use the array path for proper precision/overflow validation
if let ColumnarValue::Scalar(scalar) = arg {
match scalar {
ScalarValue::Float64(v) => {
return Ok(ColumnarValue::Scalar(ScalarValue::Float64(
v.map(f64::ceil),
)));
}
ScalarValue::Float32(v) => {
return Ok(ColumnarValue::Scalar(ScalarValue::Float32(
v.map(f32::ceil),
)));
}
ScalarValue::Null => {
return Ok(ColumnarValue::Scalar(ScalarValue::Float64(None)));
}
// Decimal types fall through to array path for overflow validation
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For decimals, we could turn the scalars in arrays of size 1, pass through the existing code, then recreate a scalar from the resultant array, to benefit from code reuse and ensure we don't expand the array.

Not the cleanest way to do it but certainly the easiest.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the feedback.

_ => {}
}
}

// Array path
let args = ColumnarValue::values_to_arrays(&args.args)?;
let value = &args[0];

Expand Down
25 changes: 25 additions & 0 deletions datafusion/functions/src/math/floor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,31 @@ impl ScalarUDFImpl for FloorFunc {
}

fn invoke_with_args(&self, args: ScalarFunctionArgs) -> Result<ColumnarValue> {
let arg = &args.args[0];

// Scalar fast path for float types - avoid array conversion overhead
// Note: Decimal types use the array path for proper precision/overflow validation
if let ColumnarValue::Scalar(scalar) = arg {
match scalar {
ScalarValue::Float64(v) => {
return Ok(ColumnarValue::Scalar(ScalarValue::Float64(
v.map(f64::floor),
)));
}
ScalarValue::Float32(v) => {
return Ok(ColumnarValue::Scalar(ScalarValue::Float32(
v.map(f32::floor),
)));
}
ScalarValue::Null => {
return Ok(ColumnarValue::Scalar(ScalarValue::Float64(None)));
}
// Decimal types fall through to array path for overflow validation
_ => {}
}
}

// Array path
let args = ColumnarValue::values_to_arrays(&args.args)?;
let value = &args[0];

Expand Down