faer::sparse

Struct SymbolicSparseRowMat

Source
pub struct SymbolicSparseRowMat<I: Index, R: Shape = usize, C: Shape = usize> { /* private fields */ }
Expand description

Symbolic structure of sparse matrix in row format, either compressed or uncompressed.

Requires:

  • nrows <= I::Signed::MAX (always checked)

  • ncols <= I::Signed::MAX (always checked)

  • row_ptrs has length nrows + 1 (always checked)

  • row_ptrs is increasing

  • row_ptrs[0]..row_ptrs[nrows] is a valid range in row_indices (always checked, assuming increasing)

  • if nnz_per_row is None, elements of col_indices[row_ptrs[i]..row_ptrs[i + 1]] are less than ncols

  • nnz_per_row[i] <= row_ptrs[i+1] - row_ptrs[i]

  • if nnz_per_row is Some(_), elements of col_indices[row_ptrs[i]..][..nnz_per_row[i]] are less than ncols

  • Within each row, column indices are sorted in increasing order.

§Note

Some algorithms allow working with matrices containing unsorted row indices per column.

Passing such a matrix to an algorithm that does not explicitly permit this is unspecified (though not undefined) behavior.

Implementations§

Source§

impl<I: Index, R: Shape, C: Shape> SymbolicSparseRowMat<I, R, C>

Source

pub fn new_checked( nrows: R, ncols: C, row_ptrs: Vec<I>, nnz_per_row: Option<Vec<I>>, col_indices: Vec<I>, ) -> Self

Creates a new symbolic matrix view after asserting its invariants.

§Panics

See type level documentation.

Source

pub fn new_unsorted_checked( nrows: R, ncols: C, row_ptrs: Vec<I>, nnz_per_row: Option<Vec<I>>, col_indices: Vec<I>, ) -> Self

Creates a new symbolic matrix view from data containing duplicate and/or unsorted column indices per row, after asserting its other invariants.

§Panics

See type level documentation.

Source

pub unsafe fn new_unchecked( nrows: R, ncols: C, row_ptrs: Vec<I>, nnz_per_row: Option<Vec<I>>, col_indices: Vec<I>, ) -> Self

Creates a new symbolic matrix view without asserting its invariants.

§Safety

See type level documentation.

Source

pub fn into_parts(self) -> (R, C, Vec<I>, Option<Vec<I>>, Vec<I>)

Returns the components of the matrix in the order:

  • row count,
  • column count,
  • row pointers,
  • nonzeros per row,
  • column indices.
Source

pub fn as_ref(&self) -> SymbolicSparseRowMatRef<'_, I, R, C>

Returns a view over the symbolic structure of self.

Source

pub fn nrows(&self) -> R

Returns the number of rows of the matrix.

Source

pub fn ncols(&self) -> C

Returns the number of columns of the matrix.

Source

pub fn shape(&self) -> (R, C)

Returns the number of rows and columns of the matrix.

Source

pub fn into_transpose(self) -> SymbolicSparseColMat<I, C, R>

Consumes the matrix, and returns its transpose in column-major format without reallocating.

§Note

Allows unsorted matrices, producing an unsorted output.

Source

pub fn to_owned(&self) -> Result<SymbolicSparseRowMat<I, R, C>, FaerError>

Copies the current matrix into a newly allocated matrix.

§Note

Allows unsorted matrices, producing an unsorted output.

Source

pub fn to_col_major(&self) -> Result<SymbolicSparseColMat<I, R, C>, FaerError>

Copies the current matrix into a newly allocated matrix, with column-major order.

§Note

Allows unsorted matrices, producing a sorted output. Duplicate entries are kept, however.

Source

pub fn compute_nnz(&self) -> usize

Returns the number of symbolic non-zeros in the matrix.

The value is guaranteed to be less than I::Signed::MAX.

§Note

Allows unsorted matrices, but the output is a count of all the entries, including the duplicate ones.

Source

pub fn row_ptrs(&self) -> &[I]

Returns the column pointers.

Source

pub fn nnz_per_row(&self) -> Option<&[I]>

Returns the count of non-zeros per row of the matrix.

Source

pub fn col_indices(&self) -> &[I]

Returns the column indices.

Source

pub fn col_indices_of_row_raw(&self, i: Idx<R>) -> &[Idx<C, I>]

Returns the column indices of row i.

§Panics

Panics if i >= self.nrows().

Source

pub fn col_indices_of_row_raw_unbound(&self, i: Idx<R>) -> &[I]

Returns the column indices of row i.

§Panics

Panics if i >= self.nrows().

Source

pub fn col_indices_of_row( &self, i: Idx<R>, ) -> impl '_ + ExactSizeIterator + DoubleEndedIterator<Item = Idx<C>>

Returns the column indices of row i.

§Panics

Panics if i >= self.ncols().

Source

pub fn row_range(&self, i: Idx<R>) -> Range<usize>

Returns the range that the row i occupies in self.col_indices().

§Panics

Panics if i >= self.nrows().

Source

pub unsafe fn row_range_unchecked(&self, i: Idx<R>) -> Range<usize>

Returns the range that the row i occupies in self.col_indices().

§Safety

The behavior is undefined if i >= self.nrows().

Source

pub fn try_new_from_indices( nrows: R, ncols: C, indices: &[(Idx<R, I>, Idx<C, I>)], ) -> Result<(Self, ValuesOrder<I>), CreationError>

Create a new symbolic structure, and the corresponding order for the numerical values from pairs of indices (row, col).

Source§

impl<I: Index> SymbolicSparseRowMat<I>

Source

pub fn try_new_from_nonnegative_indices( nrows: usize, ncols: usize, indices: &[(I::Signed, I::Signed)], ) -> Result<(Self, ValuesOrder<I>), CreationError>

Create a new symbolic structure, and the corresponding order for the numerical values from pairs of indices (row, col).

Negative indices are ignored.

Trait Implementations§

Source§

impl<I: Clone + Index, R: Clone + Shape, C: Clone + Shape> Clone for SymbolicSparseRowMat<I, R, C>

Source§

fn clone(&self) -> SymbolicSparseRowMat<I, R, C>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<I: Index, R: Shape, C: Shape> Debug for SymbolicSparseRowMat<I, R, C>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<I, R, C> Freeze for SymbolicSparseRowMat<I, R, C>
where R: Freeze, C: Freeze,

§

impl<I, R, C> RefUnwindSafe for SymbolicSparseRowMat<I, R, C>

§

impl<I, R, C> Send for SymbolicSparseRowMat<I, R, C>

§

impl<I, R, C> Sync for SymbolicSparseRowMat<I, R, C>

§

impl<I, R, C> Unpin for SymbolicSparseRowMat<I, R, C>
where R: Unpin, C: Unpin, I: Unpin,

§

impl<I, R, C> UnwindSafe for SymbolicSparseRowMat<I, R, C>
where R: UnwindSafe, C: UnwindSafe, I: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.