Skip to main content

poulpy_cpu_ref/reference/
mod.rs

1//! Pure-Rust reference implementations of all polynomial operations.
2//!
3//! Contains scalar polynomial arithmetic (`znx`), vector-level operations
4//! (`vec_znx`), and an FFT64 implementation (`fft64`). Used as a
5//! correctness oracle for backend testing via the
6//! [`poulpy_hal::test_suite`] module.
7
8pub mod fft64;
9pub mod ntt120;
10pub mod vec_znx;
11pub mod znx;