openvm_stark_backend::prover::hal

Trait MatrixDimensions

Source
pub trait MatrixDimensions {
    // Required methods
    fn height(&self) -> usize;
    fn width(&self) -> usize;
}

Required Methods§

Source

fn height(&self) -> usize

Source

fn width(&self) -> usize

Implementations on Foreign Types§

Source§

impl<T: Send + Sync + Clone> MatrixDimensions for Arc<RowMajorMatrix<T>>

Source§

fn height(&self) -> usize

Source§

fn width(&self) -> usize

Implementors§