Struct tract_core::ops::cnn::Patch[][src]

pub struct Patch {
    pub spec: PatchSpec,
    pub pad_before: TVec<usize>,
    pub pad_after: TVec<usize>,
    pub padded: bool,
    pub output_shape: TVec<usize>,
    pub data_field: Array2<isize>,
    pub data_field_min_max: TVec<(isize, isize)>,
    pub standard_layout_data_field: Vec<isize>,
    pub op_strides_times_input_storage_strides: TVec<isize>,
    pub valid_output_zone: TVec<Range<usize>>,
    pub invalid_output_zones: TVec<TVec<Range<usize>>>,
    pub zones: Vec<Zone>,
    pub valid_zone: Option<usize>,
    pub zone_strides: TVec<isize>,
    pub input_layout_strides: TVec<isize>,
}

Fields

spec: PatchSpecpad_before: TVec<usize>pad_after: TVec<usize>padded: booloutput_shape: TVec<usize>data_field: Array2<isize>data_field_min_max: TVec<(isize, isize)>standard_layout_data_field: Vec<isize>op_strides_times_input_storage_strides: TVec<isize>valid_output_zone: TVec<Range<usize>>invalid_output_zones: TVec<TVec<Range<usize>>>zones: Vec<Zone>valid_zone: Option<usize>zone_strides: TVec<isize>input_layout_strides: TVec<isize>

Implementations

impl Patch[src]

pub fn rank(&self) -> usize[src]

pub fn visit_output(&self, acceptor: impl FnMut(&Scanner<'_>))[src]

pub fn centers_offsets(&self) -> Vec<isize>

Notable traits for Vec<u8, A>

impl<A> Write for Vec<u8, A> where
    A: Allocator
[src]

pub fn at<'p>(&'p self, coords: &[usize]) -> PatchIterator<'p>[src]

pub fn at_hint<'p>(
    &'p self,
    coords: &[usize],
    hint: Option<bool>
) -> PatchIterator<'p>
[src]

pub fn global_offset_for(&self, coords: &[usize], patch_index: usize) -> usize[src]

Trait Implementations

impl Clone for Patch[src]

impl Debug for Patch[src]

impl Hash for Patch[src]

impl PartialEq<Patch> for Patch[src]

impl StructuralPartialEq for Patch[src]

Auto Trait Implementations

impl RefUnwindSafe for Patch

impl Send for Patch

impl Sync for Patch

impl Unpin for Patch

impl UnwindSafe for Patch

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Any + Send + Sync
[src]

impl<T> DynClone for T where
    T: Clone
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.