Skip to content

Commit 4ee7b53

Browse files
committed
merge
Signed-off-by: Nicholas Gates <[email protected]>
1 parent 9da352f commit 4ee7b53

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

vortex-compute/src/filter/slice/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33

44
use std::arch::is_aarch64_feature_detected;
55
use std::ptr;
6+
67
use vortex_buffer::BitView;
78
use vortex_mask::Mask;
9+
810
use crate::filter::Filter;
911

1012
#[cfg(target_arch = "aarch64")]

vortex-compute/src/filter/slice/neon/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ use vortex_error::vortex_panic;
1919
/// Benchmark wrapper for [`filter_neon`].
2020
#[doc(hidden)]
2121
#[cfg(feature = "bench")]
22-
#[inline(never)]
2322
pub fn bench_filter_neon<const NB: usize, T: Copy>(bit_view: &BitView<NB>, slice: &mut [T]) {
2423
if is_aarch64_feature_detected!("neon") {
2524
unsafe { filter_neon(slice, bit_view) }

vortex-compute/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ pub mod mask;
1919
/// Functions exported for benchmarking purposes.
2020
#[cfg(feature = "bench")]
2121
pub mod bench {
22+
#[cfg(target_arch = "aarch64")]
2223
pub use crate::filter::slice::neon::bench_filter_neon;
2324
pub use crate::filter::slice::scalar::bench_filter_scalar;
2425
}

0 commit comments

Comments
 (0)