Struct tract_pulse::internal::tract_core::ops::nn::BaseDataShape
pub struct BaseDataShape<D, S>where
D: DimLike,
S: AsRef<[D]> + Debug,{
pub fmt: DataFormat,
pub shape: S,
pub strides: SmallVec<[D; 4]>,
}
Fields§
§fmt: DataFormat
§shape: S
§strides: SmallVec<[D; 4]>
Implementations§
§impl<D, S> BaseDataShape<D, S>where
D: DimLike,
S: AsRef<[D]> + Debug,
impl<D, S> BaseDataShape<D, S>where D: DimLike, S: AsRef<[D]> + Debug,
pub fn rank(&self) -> usize
pub fn hw_rank(&self) -> usize
pub fn n_axis(&self) -> Option<usize>
pub fn c_axis(&self) -> usize
pub fn h_axis(&self) -> usize
pub fn hw_axes(&self) -> Range<usize> ⓘ
pub fn n_dim(&self) -> Option<&D>
pub fn c_dim(&self) -> &D
pub fn hw_dims(&self) -> &[D]
pub fn n(&self) -> Option<&D>
pub fn c(&self) -> &D
pub fn n_stride(&self) -> Option<&D>
pub fn h_stride(&self) -> &D
pub fn hw_strides(&self) -> &[D]
pub fn w_stride(&self) -> &D
pub fn c_stride(&self) -> &D
Trait Implementations§
§impl<D, S> Clone for BaseDataShape<D, S>where
D: Clone + DimLike,
S: Clone + AsRef<[D]> + Debug,
impl<D, S> Clone for BaseDataShape<D, S>where D: Clone + DimLike, S: Clone + AsRef<[D]> + Debug,
§fn clone(&self) -> BaseDataShape<D, S>
fn clone(&self) -> BaseDataShape<D, S>
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 more§impl<D, S> PartialEq<BaseDataShape<D, S>> for BaseDataShape<D, S>where
D: PartialEq<D> + DimLike,
S: PartialEq<S> + AsRef<[D]> + Debug,
impl<D, S> PartialEq<BaseDataShape<D, S>> for BaseDataShape<D, S>where D: PartialEq<D> + DimLike, S: PartialEq<S> + AsRef<[D]> + Debug,
§fn eq(&self, other: &BaseDataShape<D, S>) -> bool
fn eq(&self, other: &BaseDataShape<D, S>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<D, S> Eq for BaseDataShape<D, S>where D: Eq + DimLike, S: Eq + AsRef<[D]> + Debug,
impl<D, S> StructuralEq for BaseDataShape<D, S>where D: DimLike, S: AsRef<[D]> + Debug,
impl<D, S> StructuralPartialEq for BaseDataShape<D, S>where D: DimLike, S: AsRef<[D]> + Debug,
Auto Trait Implementations§
impl<D, S> RefUnwindSafe for BaseDataShape<D, S>where D: RefUnwindSafe, S: RefUnwindSafe,
impl<D, S> Send for BaseDataShape<D, S>where S: Send,
impl<D, S> Sync for BaseDataShape<D, S>where S: Sync,
impl<D, S> Unpin for BaseDataShape<D, S>where D: Unpin, S: Unpin,
impl<D, S> UnwindSafe for BaseDataShape<D, S>where D: UnwindSafe + RefUnwindSafe, S: UnwindSafe,
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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
source§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.