Struct MaxPool2dBackward
pub struct MaxPool2dBackward<B>where
B: Backend,{
pub x_grad: <B as Backend>::FloatTensorPrimitive,
}Expand description
Gradient computed during the backward pass for each tensor used by max_pool2d.
Fields§
§x_grad: <B as Backend>::FloatTensorPrimitiveGradient.
Implementations§
§impl<B> MaxPool2dBackward<B>where
B: Backend,
impl<B> MaxPool2dBackward<B>where
B: Backend,
pub fn new(x_grad: <B as Backend>::FloatTensorPrimitive) -> MaxPool2dBackward<B>
pub fn new(x_grad: <B as Backend>::FloatTensorPrimitive) -> MaxPool2dBackward<B>
Constructs a new MaxPool2dBackward.
Auto Trait Implementations§
impl<B> Freeze for MaxPool2dBackward<B>
impl<B> RefUnwindSafe for MaxPool2dBackward<B>
impl<B> Send for MaxPool2dBackward<B>
impl<B> Sync for MaxPool2dBackward<B>
impl<B> Unpin for MaxPool2dBackward<B>
impl<B> UnwindSafe for MaxPool2dBackward<B>
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> 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