pub struct AvgPool1dOpIr {
pub x: TensorIr,
pub kernel_size: usize,
pub stride: usize,
pub padding: usize,
pub count_include_pad: bool,
pub ceil_mode: bool,
pub out: TensorIr,
}Fields§
§x: TensorIr§kernel_size: usize§stride: usize§padding: usize§count_include_pad: bool§ceil_mode: bool§out: TensorIrImplementations§
Source§impl AvgPool1dOpIr
impl AvgPool1dOpIr
Sourcepub fn create(
x: TensorIr,
kernel_size: usize,
stride: usize,
padding: usize,
count_include_pad: bool,
ceil_mode: bool,
new_id: impl FnOnce() -> TensorId,
) -> AvgPool1dOpIr
pub fn create( x: TensorIr, kernel_size: usize, stride: usize, padding: usize, count_include_pad: bool, ceil_mode: bool, new_id: impl FnOnce() -> TensorId, ) -> AvgPool1dOpIr
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 AvgPool1dOpIr
impl Clone for AvgPool1dOpIr
Source§fn clone(&self) -> AvgPool1dOpIr
fn clone(&self) -> AvgPool1dOpIr
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 AvgPool1dOpIr
impl Debug for AvgPool1dOpIr
Source§impl<'de> Deserialize<'de> for AvgPool1dOpIr
impl<'de> Deserialize<'de> for AvgPool1dOpIr
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 AvgPool1dOpIr
impl Hash for AvgPool1dOpIr
Source§impl PartialEq for AvgPool1dOpIr
impl PartialEq for AvgPool1dOpIr
Source§impl Serialize for AvgPool1dOpIr
impl Serialize for AvgPool1dOpIr
impl StructuralPartialEq for AvgPool1dOpIr
Auto Trait Implementations§
impl Freeze for AvgPool1dOpIr
impl RefUnwindSafe for AvgPool1dOpIr
impl Send for AvgPool1dOpIr
impl Sync for AvgPool1dOpIr
impl Unpin for AvgPool1dOpIr
impl UnwindSafe for AvgPool1dOpIr
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