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