Files
poulpy/poulpy-schemes/src/bin_fhe/circuit_bootstrapping/tests/mod.rs
2025-11-21 16:38:19 +01:00

10 lines
312 B
Rust

pub mod circuit_bootstrapping;
#[cfg(test)]
#[cfg(not(all(feature = "enable-avx", target_arch = "x86_64", target_feature = "avx2", target_feature = "fma")))]
mod fft64_ref;
#[cfg(test)]
#[cfg(all(feature = "enable-avx", target_arch = "x86_64", target_feature = "avx2", target_feature = "fma"))]
mod fft64_avx;