Skip to content

Commit

Permalink
Disabled vectorisation for neon
Browse files Browse the repository at this point in the history
  • Loading branch information
aikixd committed Nov 25, 2024
1 parent 3084cb8 commit 4256cc3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions crates/boojum/src/field/goldilocks/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ mod inversion;
any(target_feature = "neon", target_feature = "avx2"),
not(all(target_feature = "avx512f", target_feature = "avx512vl"))
))]
pub mod arm_asm_impl;
// pub mod arm_asm_impl;
// Disabled for darwin for now
pub mod generic_impl;

#[cfg(not(any(
all(target_feature = "avx512f", target_feature = "avx512vl"),
Expand Down Expand Up @@ -47,7 +49,9 @@ pub mod avx512_impl;
any(target_feature = "neon", target_feature = "avx2"),
not(all(target_feature = "avx512f", target_feature = "avx512vl"))
))]
pub use arm_asm_impl::*;
// Disabled for darwin for now
// pub use arm_asm_impl::*;
pub use generic_impl::*;

#[cfg(not(any(
all(target_feature = "avx512f", target_feature = "avx512vl"),
Expand Down

0 comments on commit 4256cc3

Please sign in to comment.