Struct Rank
pub struct Rank<const N: usize>;Expand description
Static tensor rank marker.
§Examples
use tenferro_tensor_core::{Rank, TensorRank};
assert_eq!(Rank::<3>::RANK, Some(3));Trait Implementations§
§impl<const N: usize> TensorRank for Rank<N>
impl<const N: usize> TensorRank for Rank<N>
§fn shape_from_vec(
shape: SmallVec<[usize; 8]>,
) -> Result<<Rank<N> as TensorRank>::Shape, Error>
fn shape_from_vec( shape: SmallVec<[usize; 8]>, ) -> Result<<Rank<N> as TensorRank>::Shape, Error>
Convert a dynamic shape vector into this rank’s shape representation. Read more
§fn shape_into_vec(shape: <Rank<N> as TensorRank>::Shape) -> SmallVec<[usize; 8]>
fn shape_into_vec(shape: <Rank<N> as TensorRank>::Shape) -> SmallVec<[usize; 8]>
Convert this rank’s shape representation into a dynamic shape vector. Read more
§fn strides_from_vec(
strides: SmallVec<[isize; 8]>,
) -> Result<<Rank<N> as TensorRank>::Strides, Error>
fn strides_from_vec( strides: SmallVec<[isize; 8]>, ) -> Result<<Rank<N> as TensorRank>::Strides, Error>
Convert a dynamic stride vector into this rank’s stride representation. Read more
§fn strides_into_vec(
strides: <Rank<N> as TensorRank>::Strides,
) -> SmallVec<[isize; 8]>
fn strides_into_vec( strides: <Rank<N> as TensorRank>::Strides, ) -> SmallVec<[isize; 8]>
Convert this rank’s stride representation into a dynamic stride vector. Read more
impl<const N: usize> Copy for Rank<N>
impl<const N: usize> Eq for Rank<N>
impl<const N: usize> StructuralPartialEq for Rank<N>
Auto Trait Implementations§
impl<const N: usize> Freeze for Rank<N>
impl<const N: usize> RefUnwindSafe for Rank<N>
impl<const N: usize> Send for Rank<N>
impl<const N: usize> Sync for Rank<N>
impl<const N: usize> Unpin for Rank<N>
impl<const N: usize> UnsafeUnpin for Rank<N>
impl<const N: usize> UnwindSafe for Rank<N>
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