//! Tape-based automatic differentiation
//!
//! This module re-exports the original `GradientTape` from `crate::tape` (now
//! renamed to avoid conflicts) and adds the enhanced tape implementations:
//! [`ReverseTape`], [`ForwardTape`], [`MixedMode`], [`TapeCheckpoint`], and
//! [`TapeOptimizer`].
pub use ;