From 4256cc3cad90d4e9497fa692f915a583d23a2163 Mon Sep 17 00:00:00 2001 From: Dmitriy Sorkin Date: Mon, 25 Nov 2024 17:36:25 +0200 Subject: [PATCH] Disabled vectorisation for neon --- crates/boojum/src/field/goldilocks/mod.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/crates/boojum/src/field/goldilocks/mod.rs b/crates/boojum/src/field/goldilocks/mod.rs index 26f5382..15109e9 100644 --- a/crates/boojum/src/field/goldilocks/mod.rs +++ b/crates/boojum/src/field/goldilocks/mod.rs @@ -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"), @@ -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"),