Skip to main content

StridedBase

Struct StridedBase 

Source
pub struct StridedBase<T>
where T: DenseData,
{ /* private fields */ }
Expand description

A row-major strided matrix.

This is a generalization of the MatrixBase class as it does not mandate a dense layout in memory.

           |<------ cstride ----->|
           |<-- ncols -->|
           +-------------+
slice 0 -> | a0 a1 a2 a3 | a4 a5 a6     ^
slice 1 -> | b0 b1 b2 b3 | b4 b5 b6     |
slice 2 -> | c0 c1 c2 c3 | c4 c5 c6   nrows
slice 3 -> | d0 d1 d2 d3 | d4 d5 d6     |
slice 4 -> | e0 e1 e2 e3 | e4 e5 e6     |
slicf 5 -> | f0 f1 f2 f3 | f4 f5 f6     v
           +-------------+
                 ^
                 |
            StridedView

This abstraction is useful when performing PQ related operations such as training or compression as it provides a convenient abstraction for working with columnar subsets of dense data in-place.

Implementations§

Source§

impl<'a, T> StridedBase<&'a [T]>

Source

pub fn try_shrink_from( data: &'a [T], nrows: usize, ncols: usize, cstride: usize, ) -> Result<Self, TryFromError<&'a [T]>>

Construct a strided view over data slice, shrinking the slice as needed.

Returns an error if data is shorter than the value returned by linear_length.

§Panics
  • Panics if cstride < ncols.
Source§

impl<'a, T> StridedBase<&'a mut [T]>

Source

pub fn try_shrink_from_mut( data: &'a mut [T], nrows: usize, ncols: usize, cstride: usize, ) -> Result<Self, TryFromError<&'a mut [T]>>

Construct a strided view over data slice, shrinking the slice as needed.

Returns an error if data is shorter than the value returned by linear_length.

§Panics
  • Panics if cstride < ncols.
Source§

impl<T> StridedBase<T>
where T: DenseData,

Source

pub fn try_from( data: T, nrows: usize, ncols: usize, cstride: usize, ) -> Result<Self, TryFromError<T>>

Construct a strided view over data slice, shrinking the slice as needed.

Returns an error if data is not equal to the expected length as determined by linear_length.

§Panics
  • Panics if cstride < ncols.
Source

pub fn ncols(&self) -> usize

Return the number of columns in the matrix.

Source

pub fn nrows(&self) -> usize

Return the number of rows in the matrix.

Source

pub fn cstride(&self) -> usize

Return the count of elements between the start of each row.

Source

pub fn as_slice(&self) -> &[T::Elem]

Return the underlying data as a slice.

§Note

The underlying representation for a strided matrix is not necessarily dense.

Source

pub fn as_mut_slice(&mut self) -> &mut [T::Elem]
where T: MutDenseData,

Return the underlying data as a slice.

§Note

The underlying representation for a strided matrix is not necessarily dense.

Source

pub fn row(&self, row: usize) -> &[T::Elem]

Return row row as a slice.

§Panic

Panics if row >= self.nrows().

Source

pub unsafe fn get_row_unchecked(&self, row: usize) -> &[T::Elem]

Returns the requested row without boundschecking.

§Safety

The following conditions must hold to avoid undefined behavior:

  • row < self.nrows().
Source

pub fn row_mut(&mut self, row: usize) -> &mut [T::Elem]
where T: MutDenseData,

Return row row as a mutable slice.

§Panics

Panics if row >= self.nrows().

Source

pub unsafe fn get_row_unchecked_mut(&mut self, row: usize) -> &mut [T::Elem]
where T: MutDenseData,

Returns the requested row without boundschecking.

§Safety

The following conditions must hold to avoid undefined behavior:

  • row < self.nrows().
Source

pub fn row_iter(&self) -> impl Iterator<Item = &[T::Elem]>

Return a iterator over all rows in the matrix.

Rows are yielded sequentially beginning with row 0.

§Panics

Panics if self.ncols() == 0 (because the implementation does not work correctly in this case and it’s too corner-case to bother fixing). This restriction may be lifted in the future.

Source

pub fn row_iter_mut(&mut self) -> impl Iterator<Item = &mut [T::Elem]>
where T: MutDenseData,

Return a mutable iterator over all rows in the matrix.

Rows are yielded sequentially beginning with row 0.

§Panics

Panics if self.ncols() == 0 (because the implementation does not work correctly in this case and it’s too corner-case to bother fixing). This restriction may be lifted in the future.

Source

pub fn as_ptr(&self) -> *const T::Elem

Return a pointer to the base of the matrix.

Source

pub fn as_mut_ptr(&mut self) -> *mut T::Elem
where T: MutDenseData,

Return a pointer to the base of the matrix.

Source

pub unsafe fn get_unchecked(&self, row: usize, col: usize) -> &T::Elem

Returns a reference to an element without boundschecking.

§Safety

The following conditions must hold to avoid undefined behavior:

  • row < self.nrows().
  • col < self.ncols().
Source

pub unsafe fn get_unchecked_mut( &mut self, row: usize, col: usize, ) -> &mut T::Elem
where T: MutDenseData,

Returns a mutable reference to an element without boundschecking.

§Safety

The following conditions must hold to avoid undefined behavior:

  • row < self.nrows().
  • col < self.ncols().
Source

pub fn as_view(&self) -> StridedView<'_, T::Elem>

Return a view over the matrix.

Trait Implementations§

Source§

impl<T> Clone for StridedBase<T>
where T: DenseData + Clone,

Source§

fn clone(&self) -> StridedBase<T>

Returns a duplicate 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<T> Debug for StridedBase<T>
where T: DenseData + Debug,

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<T, U> From<MatrixBase<T>> for StridedBase<U>
where T: DenseData + Into<U>, U: DenseData,

Source§

fn from(matrix: MatrixBase<T>) -> Self

Converts to this type from the input type.
Source§

impl<T> Index<(usize, usize)> for StridedBase<T>
where T: DenseData,

Return a reference to the item at entry (row, col) in the matrix.

§Panics

Panics if row >= self.nrows() or col >= self.ncols().

Source§

type Output = <T as DenseData>::Elem

The returned type after indexing.
Source§

fn index(&self, (row, col): (usize, usize)) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl<T> IndexMut<(usize, usize)> for StridedBase<T>
where T: MutDenseData,

Return a mutable reference to the item at entry (row, col) in the matrix.

§Panics

Panics if row >= self.nrows() or col >= self.ncols().

Source§

fn index_mut(&mut self, (row, col): (usize, usize)) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl<T> Copy for StridedBase<T>
where T: DenseData + Copy,

Auto Trait Implementations§

§

impl<T> Freeze for StridedBase<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for StridedBase<T>
where T: RefUnwindSafe,

§

impl<T> Send for StridedBase<T>
where T: Send,

§

impl<T> Sync for StridedBase<T>
where T: Sync,

§

impl<T> Unpin for StridedBase<T>
where T: Unpin,

§

impl<T> UnwindSafe for StridedBase<T>
where T: 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, dest: *mut u8)

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

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn generate(&mut self) -> T

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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> AsyncFriendly for T
where T: Send + Sync + 'static,