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