//! Autograd engine for automatic differentiation
//!
//! This module provides a compute graph-based autograd engine similar to PyTorch's autograd.
//! It records operations during forward pass and computes gradients during backward pass.
pub use ;
pub use DifferentiableTensor;
pub use ;
/// Type alias for operations
pub type Op = OpType;