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