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