#[non_exhaustive]pub enum TensorDimOrder {
RowMajor,
ColMajor,
Indexed,
}
Expand description
Indicate to read tensor from memory in row-major or column-major order.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
RowMajor
elements along a row are consecutive in memory
ColMajor
elements along a column are consecutive in memory
Indexed
elements storage follow the order defined by
GstTensorDim.order_index
This mean that when iterating the tensor
the dimension with index 0 is the most nested in the loops and consecutive
in memory, followed by other dimensions in the order defined by
GstTensorDim.order_index
.
Trait Implementations§
Source§impl Clone for TensorDimOrder
impl Clone for TensorDimOrder
Source§fn clone(&self) -> TensorDimOrder
fn clone(&self) -> TensorDimOrder
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TensorDimOrder
impl Debug for TensorDimOrder
Source§impl Hash for TensorDimOrder
impl Hash for TensorDimOrder
Source§impl Ord for TensorDimOrder
impl Ord for TensorDimOrder
Source§fn cmp(&self, other: &TensorDimOrder) -> Ordering
fn cmp(&self, other: &TensorDimOrder) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TensorDimOrder
impl PartialEq for TensorDimOrder
Source§impl PartialOrd for TensorDimOrder
impl PartialOrd for TensorDimOrder
impl Copy for TensorDimOrder
impl Eq for TensorDimOrder
impl StructuralPartialEq for TensorDimOrder
Auto Trait Implementations§
impl Freeze for TensorDimOrder
impl RefUnwindSafe for TensorDimOrder
impl Send for TensorDimOrder
impl Sync for TensorDimOrder
impl Unpin for TensorDimOrder
impl UnwindSafe for TensorDimOrder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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