Trait collenchyma_blas::operation::IOperationDot
[−]
[src]
pub trait IOperationDot<F> { fn compute(&self, x: &MemoryType, y: &MemoryType, result: &mut MemoryType) -> Result<(), Error>; }
Describes a Dot Operation.
Required Methods
fn compute(&self, x: &MemoryType, y: &MemoryType, result: &mut MemoryType) -> Result<(), Error>
Computes the Dot operation.
Implementors
impl IOperationDot<f32> for Backend<Native>
impl IOperationDot<f64> for Backend<Native>