//! Random number generation utilities for burn-ndarray
use SmallRng;
use StdRng;
/// Type alias for the RNG used by burn-ndarray
pub type NdArrayRng = StdRng;
pub type NdArrayRng = SmallRng;
use SeedableRng;
/// Get a seeded random number generator
///
/// For std builds, uses OS entropy.
/// For no_std builds, uses a compile-time random seed.
/// Get a seeded random number generator
///
/// For std builds, uses OS entropy.
/// For no_std builds, uses a compile-time random seed.