xad-rs 0.3.6

Exact automatic differentiation for Rust — forward-mode, reverse-mode, first- and second-order, with named variable support for ergonomic gradient readback
Documentation
1
2
3
4
5
6
7
//! Composite AD operations: Jacobian and Hessian computations.

pub mod jacobian;
pub mod hessian;

pub use jacobian::{compute_jacobian_rev, compute_jacobian_fwd, NamedJacobian, compute_named_jacobian};
pub use hessian::{compute_hessian, NamedHessian, compute_full_hessian};