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
impl IOperationScale<f32> for Backend<Native>
impl IOperationScale<f64> for Backend<Native>