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