Skip to content

Commit

Permalink
Remove multiversion dependency (#3452)
Browse files Browse the repository at this point in the history
  • Loading branch information
tustvold committed Jan 4, 2023
1 parent 9398af6 commit 1423afd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion arrow-arith/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ arrow-data = { version = "30.0.0", path = "../arrow-data" }
arrow-schema = { version = "30.0.0", path = "../arrow-schema" }
chrono = { version = "0.4.23", default-features = false }
half = { version = "2.1", default-features = false }
multiversion = { version = "0.7.1", default-features = false }
num = { version = "0.4", default-features = false, features = ["std"] }

[dev-dependencies]
Expand Down
3 changes: 0 additions & 3 deletions arrow-arith/src/aggregate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

//! Defines aggregations over Arrow arrays.

use multiversion::multiversion;

use arrow_array::cast::*;
use arrow_array::iterator::ArrayIter;
use arrow_array::*;
Expand Down Expand Up @@ -104,7 +102,6 @@ pub fn max_boolean(array: &BooleanArray) -> Option<bool> {
}

/// Helper to compute min/max of [`ArrayAccessor`].
#[multiversion(targets("x86_64+avx"))]
fn min_max_helper<T, A: ArrayAccessor<Item = T>, F>(array: A, cmp: F) -> Option<T>
where
F: Fn(&T, &T) -> bool,
Expand Down

0 comments on commit 1423afd

Please sign in to comment.