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