SvpApplyDft

Trait SvpApplyDft 

Source
pub trait SvpApplyDft<B: Backend> {
    // Required method
    fn svp_apply_dft<R, A, C>(
        &self,
        res: &mut R,
        res_col: usize,
        a: &A,
        a_col: usize,
        b: &C,
        b_col: usize,
    )
       where R: VecZnxDftToMut<B>,
             A: SvpPPolToRef<B>,
             C: VecZnxToRef;
}
Expand description

Apply a scalar-vector product between a[a_col] and b[b_col] and stores the result on res[res_col].

Required Methods§

Source

fn svp_apply_dft<R, A, C>( &self, res: &mut R, res_col: usize, a: &A, a_col: usize, b: &C, b_col: usize, )
where R: VecZnxDftToMut<B>, A: SvpPPolToRef<B>, C: VecZnxToRef,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<B> SvpApplyDft<B> for Module<B>
where B: Backend + SvpApplyDftImpl<B>,