Trait collenchyma_blas::operation::IOperationAxpy [] [src]

pub trait IOperationAxpy<F> {
    fn compute(&self, a: &MemoryType, x: &MemoryType, y: &mut MemoryType) -> Result<(), Error>;
}

Describes a Axpy Operation.

Required Methods

fn compute(&self, a: &MemoryType, x: &MemoryType, y: &mut MemoryType) -> Result<(), Error>

Computes the Axpy operation.

Implementors