pub enum Stage {
NnzCount,
Finalize,
FullComputation,
}Expand description
Stage of a multi-pass sparse-sparse matrix product (see csr2m).
Variants§
NnzCount
Analyse only; reserve nnz count without writing values.
Finalize
Compute values, given a prior NnzCount call.
FullComputation
Single-shot full computation.
Trait Implementations§
impl Copy for Stage
impl Eq for Stage
impl StructuralPartialEq for Stage
Auto Trait Implementations§
impl Freeze for Stage
impl RefUnwindSafe for Stage
impl Send for Stage
impl Sync for Stage
impl Unpin for Stage
impl UnsafeUnpin for Stage
impl UnwindSafe for Stage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more