From 9e4d378f94f2e2b623ca6bd7ae40469baf577bae Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Thu, 9 Jan 2025 13:36:07 +0100 Subject: [PATCH] chore(ci): temporarily disable the multi bit noise check on Apple M1 --- tfhe/src/core_crypto/algorithms/test/noise_distribution/mod.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tfhe/src/core_crypto/algorithms/test/noise_distribution/mod.rs b/tfhe/src/core_crypto/algorithms/test/noise_distribution/mod.rs index d8cbd0a157..1fdf12c9fe 100644 --- a/tfhe/src/core_crypto/algorithms/test/noise_distribution/mod.rs +++ b/tfhe/src/core_crypto/algorithms/test/noise_distribution/mod.rs @@ -2,6 +2,9 @@ use super::*; mod lwe_encryption_noise; mod lwe_keyswitch_noise; +// We are having crashes on aarch64 at the moment, problem is the code paths are not the same +// between archs, so we disable those on the Apple M1 +#[cfg(not(target_arch = "aarch64"))] mod lwe_multi_bit_programmable_bootstrapping_noise; mod lwe_programmable_bootstrapping_noise;