mirror of
https://github.com/arnaucube/poulpy.git
synced 2026-02-10 13:16:44 +01:00
* Move br + cbt to schemes/tfhe * refactor blind rotation * refactor circuit bootstrapping * renamed exec -> prepared
21 lines
503 B
Rust
21 lines
503 B
Rust
use crate::{
|
|
hal::{
|
|
api::ModuleNew,
|
|
layouts::Module,
|
|
tests::vec_znx::{test_vec_znx_add_normal, test_vec_znx_fill_uniform},
|
|
},
|
|
implementation::cpu_spqlios::FFT64,
|
|
};
|
|
|
|
#[test]
|
|
fn test_vec_znx_fill_uniform_fft64() {
|
|
let module: Module<FFT64> = Module::<FFT64>::new(1 << 12);
|
|
test_vec_znx_fill_uniform(&module);
|
|
}
|
|
|
|
#[test]
|
|
fn test_vec_znx_add_normal_fft64() {
|
|
let module: Module<FFT64> = Module::<FFT64>::new(1 << 12);
|
|
test_vec_znx_add_normal(&module);
|
|
}
|