Trait collenchyma_blas::operation::IOperationScale [] [src]

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

Describes a Scale Operation.

Required Methods

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

Computes the Scale operation.

Implementors