//! GPU-accelerated training backend for neural networks.
//!
//! This module provides GPU-backed autograd, operations, layers, and optimizers
//! for training neural networks on the GPU via wgpu.
//!
//! All GPU operations use `f32` precision.
pub use GpuVariable;
/// Convenience re-exports for GPU training.