forked from pola-rs/polars
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf(rust, python): optimize arr.mean (pola-rs#7048)
- Loading branch information
Showing
5 changed files
with
190 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
use std::ops::Div; | ||
|
||
use arrow::array::{Array, PrimitiveArray}; | ||
use arrow::bitmap::Bitmap; | ||
use arrow::types::NativeType; | ||
use polars_arrow::utils::CustomIterTools; | ||
use polars_core::datatypes::ListChunked; | ||
use polars_core::export::num::{NumCast, ToPrimitive}; | ||
use polars_utils::unwrap::UnwrapUncheckedRelease; | ||
|
||
use super::*; | ||
|
||
fn sum_slice<T, S>(values: &[T]) -> S | ||
where | ||
T: NativeType + ToPrimitive, | ||
S: NumCast + std::iter::Sum, | ||
{ | ||
values | ||
.iter() | ||
.copied() | ||
.map(|t| unsafe { | ||
let s: S = NumCast::from(t).unwrap_unchecked_release(); | ||
s | ||
}) | ||
.sum() | ||
} | ||
|
||
fn sum_between_offsets<T, S>(values: &[T], offset: &[i64]) -> Vec<S> | ||
where | ||
T: NativeType + ToPrimitive, | ||
S: NumCast + std::iter::Sum, | ||
{ | ||
let mut running_offset = offset[0]; | ||
|
||
(offset[1..]) | ||
.iter() | ||
.map(|end| { | ||
let current_offset = running_offset; | ||
running_offset = *end; | ||
|
||
let slice = unsafe { values.get_unchecked(current_offset as usize..*end as usize) }; | ||
sum_slice(slice) | ||
}) | ||
.collect_trusted() | ||
} | ||
|
||
fn dispatch_sum<T, S>(arr: &dyn Array, offsets: &[i64], validity: Option<&Bitmap>) -> ArrayRef | ||
where | ||
T: NativeType + ToPrimitive, | ||
S: NativeType + NumCast + std::iter::Sum, | ||
{ | ||
let values = arr.as_any().downcast_ref::<PrimitiveArray<T>>().unwrap(); | ||
let values = values.values().as_slice(); | ||
Box::new(PrimitiveArray::from_data_default( | ||
sum_between_offsets::<_, S>(values, offsets).into(), | ||
validity.cloned(), | ||
)) as ArrayRef | ||
} | ||
|
||
pub(super) fn sum_list_numerical(ca: &ListChunked, inner_type: &DataType) -> Series { | ||
use DataType::*; | ||
let chunks = ca | ||
.downcast_iter() | ||
.map(|arr| { | ||
let offsets = arr.offsets().as_slice(); | ||
let values = arr.values().as_ref(); | ||
|
||
match inner_type { | ||
Int8 => dispatch_sum::<i8, i64>(values, offsets, arr.validity()), | ||
Int16 => dispatch_sum::<i16, i64>(values, offsets, arr.validity()), | ||
Int32 => dispatch_sum::<i32, i32>(values, offsets, arr.validity()), | ||
Int64 => dispatch_sum::<i64, i64>(values, offsets, arr.validity()), | ||
UInt8 => dispatch_sum::<u8, i64>(values, offsets, arr.validity()), | ||
UInt16 => dispatch_sum::<u16, i64>(values, offsets, arr.validity()), | ||
UInt32 => dispatch_sum::<u32, u32>(values, offsets, arr.validity()), | ||
UInt64 => dispatch_sum::<u64, u64>(values, offsets, arr.validity()), | ||
Float32 => dispatch_sum::<f32, f32>(values, offsets, arr.validity()), | ||
Float64 => dispatch_sum::<f64, f64>(values, offsets, arr.validity()), | ||
_ => unimplemented!(), | ||
} | ||
}) | ||
.collect::<Vec<_>>(); | ||
|
||
Series::try_from((ca.name(), chunks)).unwrap() | ||
} | ||
|
||
fn mean_between_offsets<T, S>(values: &[T], offset: &[i64]) -> Vec<S> | ||
where | ||
T: NativeType + ToPrimitive, | ||
S: NumCast + std::iter::Sum + Div<Output = S>, | ||
{ | ||
let mut running_offset = offset[0]; | ||
|
||
(offset[1..]) | ||
.iter() | ||
.map(|end| { | ||
let current_offset = running_offset; | ||
running_offset = *end; | ||
|
||
let slice = unsafe { values.get_unchecked(current_offset as usize..*end as usize) }; | ||
unsafe { | ||
sum_slice::<_, S>(slice) / NumCast::from(slice.len()).unwrap_unchecked_release() | ||
} | ||
}) | ||
.collect_trusted() | ||
} | ||
|
||
fn dispatch_mean<T, S>(arr: &dyn Array, offsets: &[i64], validity: Option<&Bitmap>) -> ArrayRef | ||
where | ||
T: NativeType + ToPrimitive, | ||
S: NativeType + NumCast + std::iter::Sum + Div<Output = S>, | ||
{ | ||
let values = arr.as_any().downcast_ref::<PrimitiveArray<T>>().unwrap(); | ||
let values = values.values().as_slice(); | ||
Box::new(PrimitiveArray::from_data_default( | ||
mean_between_offsets::<_, S>(values, offsets).into(), | ||
validity.cloned(), | ||
)) as ArrayRef | ||
} | ||
|
||
pub(super) fn mean_list_numerical(ca: &ListChunked, inner_type: &DataType) -> Series { | ||
use DataType::*; | ||
let chunks = ca | ||
.downcast_iter() | ||
.map(|arr| { | ||
let offsets = arr.offsets().as_slice(); | ||
let values = arr.values().as_ref(); | ||
|
||
match inner_type { | ||
Int8 => dispatch_mean::<i8, f64>(values, offsets, arr.validity()), | ||
Int16 => dispatch_mean::<i16, f64>(values, offsets, arr.validity()), | ||
Int32 => dispatch_mean::<i32, f64>(values, offsets, arr.validity()), | ||
Int64 => dispatch_mean::<i64, f64>(values, offsets, arr.validity()), | ||
UInt8 => dispatch_mean::<u8, f64>(values, offsets, arr.validity()), | ||
UInt16 => dispatch_mean::<u16, f64>(values, offsets, arr.validity()), | ||
UInt32 => dispatch_mean::<u32, f64>(values, offsets, arr.validity()), | ||
UInt64 => dispatch_mean::<u64, f64>(values, offsets, arr.validity()), | ||
Float32 => dispatch_mean::<f32, f32>(values, offsets, arr.validity()), | ||
Float64 => dispatch_mean::<f64, f64>(values, offsets, arr.validity()), | ||
_ => unimplemented!(), | ||
} | ||
}) | ||
.collect::<Vec<_>>(); | ||
|
||
Series::try_from((ca.name(), chunks)).unwrap() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters