mirror of
https://github.com/arnaucube/poulpy.git
synced 2026-02-10 05:06:44 +01:00
10 lines
312 B
Rust
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;
|