Trait collenchyma_blas::operation::IOperationCopy [] [src]

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

Describes a Copy Operation.

Required Methods

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

Computes the Copy operation.

Implementors