pub struct PoolSpec {
pub data_format: DataFormat,
pub kernel_shape: SmallVec<[usize; 4]>,
pub padding: PaddingSpec,
pub dilations: Option<SmallVec<[usize; 4]>>,
pub strides: Option<SmallVec<[usize; 4]>>,
pub input_channels: usize,
pub output_channels: usize,
}
Fields§
§data_format: DataFormat
§kernel_shape: SmallVec<[usize; 4]>
§padding: PaddingSpec
§dilations: Option<SmallVec<[usize; 4]>>
§strides: Option<SmallVec<[usize; 4]>>
§input_channels: usize
§output_channels: usize
Implementations§
Source§impl PoolSpec
impl PoolSpec
pub fn info(&self) -> Vec<String>
pub fn rank(&self) -> usize
pub fn dilation(&self, geo_axis: usize) -> usize
pub fn dilations(&self) -> Cow<'_, [usize]>
pub fn stride(&self, geo_axis: usize) -> usize
pub fn strides(&self) -> Cow<'_, [usize]>
pub fn computed_padding<D>(
&self,
input_hw: &[D],
) -> SmallVec<[ComputedPaddedDim<D>; 4]>where
D: DimLike,
pub fn output_shape<D>(
&self,
input: &[D],
) -> Result<BaseDataShape<D, SmallVec<[D; 4]>>, Error>where
D: DimLike,
pub fn output_facts( &self, inputs: &[&TypedFact], ) -> Result<SmallVec<[TypedFact; 4]>, Error>
pub fn dispose_n_axis(&self) -> PoolSpec
pub fn compute_geo( &self, input_full_shape: &[TDim], ) -> Result<GeometryBound<SymbolicPoolGeometry, ConcretePoolGeometry>, Error>
pub fn change_geo_axes(&self, op: &AxisOp) -> Result<PoolSpec, Error>
pub fn declutter(&self, input: &[TDim]) -> Result<Option<PoolSpec>, Error>
Trait Implementations§
impl Eq for PoolSpec
impl StructuralPartialEq for PoolSpec
Auto Trait Implementations§
impl Freeze for PoolSpec
impl RefUnwindSafe for PoolSpec
impl Send for PoolSpec
impl Sync for PoolSpec
impl Unpin for PoolSpec
impl UnwindSafe for PoolSpec
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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
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>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
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.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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