This commit is contained in:
Jean-Philippe Bossuat
2025-10-26 16:32:22 +01:00
parent 98208d5e67
commit 881483d1bb
11 changed files with 173 additions and 140 deletions

View File

@@ -12,7 +12,7 @@ use poulpy_hal::{
reference::{
fft64::{
reim::{ReimCopy, ReimZero, reim_copy_ref, reim_negate_inplace_ref, reim_negate_ref, reim_zero_ref},
vec_znx_dft::vec_znx_dft_copy,
vec_znx_dft::{vec_znx_dft_copy, vec_znx_dft_zero},
},
znx::znx_zero_ref,
},
@@ -426,10 +426,10 @@ impl ReimZero for FFT64Spqlios {
}
unsafe impl VecZnxDftZeroImpl<Self> for FFT64Spqlios {
fn vec_znx_dft_zero_impl<R>(_module: &Module<Self>, res: &mut R)
fn vec_znx_dft_zero_impl<R>(_module: &Module<Self>, res: &mut R, res_col: usize)
where
R: VecZnxDftToMut<Self>,
{
res.to_mut().data.fill(0);
vec_znx_dft_zero(res, res_col);
}
}