DeviceHERKAPI

Trait DeviceHERKAPI 

Source
pub trait DeviceHERKAPI<TA, TC>: DeviceAPI<TA> + DeviceAPI<TC>
where TA: Mul<Output = TC>, TC: Mul<Output = TC> + Add<Output = TC>,
{ // Required method fn herk( &self, c: &mut Self::Raw, lc: &Layout<[usize; 2]>, a: &Self::Raw, la: &Layout<[usize; 2]>, uplo: FlagUpLo, alpha: TC, beta: TC, ) -> Result<(), Error>; }

Required Methods§

Source

fn herk( &self, c: &mut Self::Raw, lc: &Layout<[usize; 2]>, a: &Self::Raw, la: &Layout<[usize; 2]>, uplo: FlagUpLo, alpha: TC, beta: TC, ) -> Result<(), Error>

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§