mirror of
https://github.com/arnaucube/poulpy.git
synced 2026-02-10 05:06:44 +01:00
removed prints
This commit is contained in:
@@ -112,9 +112,6 @@ pub fn reim4_vec_mat1col_product_ref(
|
||||
assert!(v.len() >= nrows * 8, "v must be at least nrows * 8 doubles");
|
||||
}
|
||||
|
||||
println!("u_ref: {:?}", &u[..nrows * 8]);
|
||||
println!("v_ref: {:?}", &v[..nrows * 8]);
|
||||
|
||||
let mut acc: [f64; 8] = [0f64; 8];
|
||||
let mut j = 0;
|
||||
for _ in 0..nrows {
|
||||
@@ -123,8 +120,6 @@ pub fn reim4_vec_mat1col_product_ref(
|
||||
}
|
||||
dst[0..8].copy_from_slice(&acc);
|
||||
|
||||
println!("dst_ref: {:?}", &dst[..8]);
|
||||
println!();
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
|
||||
@@ -206,9 +206,6 @@ where
|
||||
let res_big_ref: crate::layouts::VecZnxBig<Vec<u8>, BR> = module_ref.vec_znx_idft_apply_consume(res_dft_ref);
|
||||
let res_big_test: crate::layouts::VecZnxBig<Vec<u8>, BT> = module_test.vec_znx_idft_apply_consume(res_dft_test);
|
||||
|
||||
println!("res_big_ref: {}", res_big_ref);
|
||||
println!("res_big_test: {}", res_big_test);
|
||||
|
||||
let mut res_ref: VecZnx<Vec<u8>> = VecZnx::alloc(n, cols, res_size);
|
||||
let mut res_test: VecZnx<Vec<u8>> = VecZnx::alloc(n, cols, res_size);
|
||||
|
||||
@@ -462,8 +459,7 @@ pub fn test_svp_apply_dft_to_dft_inplace<BR: Backend, BT: Backend>(
|
||||
);
|
||||
}
|
||||
|
||||
println!("res_ref: {}", res_ref);
|
||||
println!("res_test: {}", res_test);
|
||||
|
||||
|
||||
assert_eq!(res_ref, res_test);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user