pub struct CholeskyPullback { /* private fields */ }Implementations§
Source§impl CholeskyPullback
impl CholeskyPullback
Sourcepub fn backward(&self, dl: MatrixView<'_>) -> Result<Matrix, SolverError>
pub fn backward(&self, dl: MatrixView<'_>) -> Result<Matrix, SolverError>
Symmetric-input convention: returns a symmetric cotangent to the full A. Upper-triangle entries of dL are ignored because L’s upper triangle is zero.
Trait Implementations§
Source§impl Clone for CholeskyPullback
impl Clone for CholeskyPullback
Source§fn clone(&self) -> CholeskyPullback
fn clone(&self) -> CholeskyPullback
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CholeskyPullback
impl RefUnwindSafe for CholeskyPullback
impl Send for CholeskyPullback
impl Sync for CholeskyPullback
impl Unpin for CholeskyPullback
impl UnsafeUnpin for CholeskyPullback
impl UnwindSafe for CholeskyPullback
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