Skip to content

Commit

Permalink
chore(ci): temporarily disable the multi bit noise check on Apple M1
Browse files Browse the repository at this point in the history
  • Loading branch information
IceTDrinker committed Jan 9, 2025
1 parent f633eed commit 9e4d378
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 9e4d378

Please sign in to comment.