pub struct AvgPool2dOpIr {
pub x: TensorIr,
pub kernel_size: [usize; 2],
pub stride: [usize; 2],
pub padding: [usize; 2],
pub count_include_pad: bool,
pub ceil_mode: bool,
pub out: TensorIr,
}Fields§
§x: TensorIr§kernel_size: [usize; 2]§stride: [usize; 2]§padding: [usize; 2]§count_include_pad: bool§ceil_mode: bool§out: TensorIrImplementations§
Source§impl AvgPool2dOpIr
impl AvgPool2dOpIr
Sourcepub fn create(
x: TensorIr,
kernel_size: [usize; 2],
stride: [usize; 2],
padding: [usize; 2],
count_include_pad: bool,
ceil_mode: bool,
new_id: impl FnOnce() -> TensorId,
) -> AvgPool2dOpIr
pub fn create( x: TensorIr, kernel_size: [usize; 2], stride: [usize; 2], padding: [usize; 2], count_include_pad: bool, ceil_mode: bool, new_id: impl FnOnce() -> TensorId, ) -> AvgPool2dOpIr
Create a new operation IR from the given inputs.
new_id should generate a unique TensorId for the uninitialized output tensor.
Trait Implementations§
Source§impl Clone for AvgPool2dOpIr
impl Clone for AvgPool2dOpIr
Source§fn clone(&self) -> AvgPool2dOpIr
fn clone(&self) -> AvgPool2dOpIr
Returns a duplicate 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 AvgPool2dOpIr
impl Debug for AvgPool2dOpIr
Source§impl<'de> Deserialize<'de> for AvgPool2dOpIr
impl<'de> Deserialize<'de> for AvgPool2dOpIr
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for AvgPool2dOpIr
impl Hash for AvgPool2dOpIr
Source§impl PartialEq for AvgPool2dOpIr
impl PartialEq for AvgPool2dOpIr
Source§impl Serialize for AvgPool2dOpIr
impl Serialize for AvgPool2dOpIr
impl StructuralPartialEq for AvgPool2dOpIr
Auto Trait Implementations§
impl Freeze for AvgPool2dOpIr
impl RefUnwindSafe for AvgPool2dOpIr
impl Send for AvgPool2dOpIr
impl Sync for AvgPool2dOpIr
impl Unpin for AvgPool2dOpIr
impl UnwindSafe for AvgPool2dOpIr
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