A Rust crate providing core building blocks for numerical computing and machine learning, including tensor operations, model abstractions, and future GPU acceleration support.
userand::{SeedableRng,rngs::StdRng};/// Set global seed for reproducibility (affects rand::thread_rng only if used indirectly).
pubfnset_seed(seed:u64){let _rng =StdRng::seed_from_u64(seed);println!("Seed set to {}", seed);}