mirror of
https://github.com/arnaucube/poulpy.git
synced 2026-02-10 21:26:41 +01:00
Ref. + AVX code & generic tests + benches (#85)
This commit is contained in:
committed by
GitHub
parent
99b9e3e10e
commit
56dbd29c59
18
poulpy-backend/src/cpu_fft64_avx/mod.rs
Normal file
18
poulpy-backend/src/cpu_fft64_avx/mod.rs
Normal file
@@ -0,0 +1,18 @@
|
||||
mod module;
|
||||
mod reim;
|
||||
mod reim4;
|
||||
mod scratch;
|
||||
mod svp;
|
||||
mod vec_znx;
|
||||
mod vec_znx_big;
|
||||
mod vec_znx_dft;
|
||||
mod vmp;
|
||||
mod zn;
|
||||
mod znx_avx;
|
||||
|
||||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
|
||||
pub struct FFT64Avx {}
|
||||
pub use reim::*;
|
||||
|
||||
#[cfg(test)]
|
||||
pub mod tests;
|
||||
Reference in New Issue
Block a user