pub struct MaxPool2dWithIndicesBackwardOpIr {
pub x: TensorIr,
pub grad: TensorIr,
pub indices: 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§grad: TensorIr§indices: TensorIr§kernel_size: [usize; 2]§stride: [usize; 2]§padding: [usize; 2]§dilation: [usize; 2]§ceil_mode: bool§out: TensorIrImplementations§
Source§impl MaxPool2dWithIndicesBackwardOpIr
impl MaxPool2dWithIndicesBackwardOpIr
Sourcepub fn create(
x: TensorIr,
grad: TensorIr,
indices: TensorIr,
kernel_size: [usize; 2],
stride: [usize; 2],
padding: [usize; 2],
dilation: [usize; 2],
ceil_mode: bool,
new_id: impl FnOnce() -> TensorId,
) -> MaxPool2dWithIndicesBackwardOpIr
pub fn create( x: TensorIr, grad: TensorIr, indices: TensorIr, kernel_size: [usize; 2], stride: [usize; 2], padding: [usize; 2], dilation: [usize; 2], ceil_mode: bool, new_id: impl FnOnce() -> TensorId, ) -> MaxPool2dWithIndicesBackwardOpIr
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 MaxPool2dWithIndicesBackwardOpIr
impl Clone for MaxPool2dWithIndicesBackwardOpIr
Source§fn clone(&self) -> MaxPool2dWithIndicesBackwardOpIr
fn clone(&self) -> MaxPool2dWithIndicesBackwardOpIr
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<'de> Deserialize<'de> for MaxPool2dWithIndicesBackwardOpIr
impl<'de> Deserialize<'de> for MaxPool2dWithIndicesBackwardOpIr
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 PartialEq for MaxPool2dWithIndicesBackwardOpIr
impl PartialEq for MaxPool2dWithIndicesBackwardOpIr
Source§fn eq(&self, other: &MaxPool2dWithIndicesBackwardOpIr) -> bool
fn eq(&self, other: &MaxPool2dWithIndicesBackwardOpIr) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MaxPool2dWithIndicesBackwardOpIr
Auto Trait Implementations§
impl Freeze for MaxPool2dWithIndicesBackwardOpIr
impl RefUnwindSafe for MaxPool2dWithIndicesBackwardOpIr
impl Send for MaxPool2dWithIndicesBackwardOpIr
impl Sync for MaxPool2dWithIndicesBackwardOpIr
impl Unpin for MaxPool2dWithIndicesBackwardOpIr
impl UnwindSafe for MaxPool2dWithIndicesBackwardOpIr
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