Trait guff_matrix::SimdMatrix[][src]

pub trait SimdMatrix<S: Simd> {
    fn is_rowwise(&self) -> bool;
fn rows(&self) -> usize;
fn cols(&self) -> usize;
fn indexed_write(&mut self, index: usize, elem: S::E);
fn as_mut_slice(&mut self) -> &mut [S::E];
fn as_slice(&self) -> &[S::E]; fn rowcol_to_index(&self, r: usize, c: usize) -> usize { ... }
fn size(&self) -> usize { ... } }
Expand description

Trait for a matrix that supports Simd iteration

Required methods

Provided methods

Implementors