pub struct Gradients { /* private fields */ }
Expand description
Gradients container used during the backward pass.
Implementations§
§impl Gradients
impl Gradients
pub fn new<B>(
root_node: Arc<Node>,
root_tensor: <B as Backend>::FloatTensorPrimitive,
) -> Gradientswhere
B: Backend,
pub fn new<B>(
root_node: Arc<Node>,
root_tensor: <B as Backend>::FloatTensorPrimitive,
) -> Gradientswhere
B: Backend,
Creates a new gradients container.
pub fn consume<B>(
&mut self,
node: &Arc<Node>,
) -> <B as Backend>::FloatTensorPrimitivewhere
B: Backend,
pub fn consume<B>(
&mut self,
node: &Arc<Node>,
) -> <B as Backend>::FloatTensorPrimitivewhere
B: Backend,
Consumes the gradients for a given tensor.
Each tensor should be consumed exactly 1 time if its gradients are only required during the backward pass, otherwise, it may be consume multiple times.
pub fn remove<B>(
&mut self,
tensor: &AutodiffTensor<B>,
) -> Option<<B as Backend>::FloatTensorPrimitive>where
B: Backend,
pub fn remove<B>(
&mut self,
tensor: &AutodiffTensor<B>,
) -> Option<<B as Backend>::FloatTensorPrimitive>where
B: Backend,
Removes a grad tensor from the container.
pub fn get<B>(
&self,
tensor: &AutodiffTensor<B>,
) -> Option<<B as Backend>::FloatTensorPrimitive>where
B: Backend,
pub fn get<B>(
&self,
tensor: &AutodiffTensor<B>,
) -> Option<<B as Backend>::FloatTensorPrimitive>where
B: Backend,
Gets a grad tensor from the container.
pub fn register<B>(
&mut self,
node_id: NodeID,
value: <B as Backend>::FloatTensorPrimitive,
)where
B: Backend,
pub fn register<B>(
&mut self,
node_id: NodeID,
value: <B as Backend>::FloatTensorPrimitive,
)where
B: Backend,
Register a grad tensor in the container.
If the tensor already exists, add both tensors together before saving the result.
Auto Trait Implementations§
impl Freeze for Gradients
impl !RefUnwindSafe for Gradients
impl Send for Gradients
impl !Sync for Gradients
impl Unpin for Gradients
impl !UnwindSafe for Gradients
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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