This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use rand::rngs::SmallRng; | |
use rand::rngs::StdRng; | |
use rand::Rng; | |
use rand::SeedableRng; | |
use rand_chacha::rand_core::RngCore; | |
use rand_chacha::ChaCha8Rng; | |
use std::hint::black_box; | |
use std::time::Instant; | |
fn main() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use rand::rngs::SmallRng; | |
use rand::rngs::StdRng; | |
use rand::Rng; | |
use rand::SeedableRng; | |
use rand_chacha::ChaCha8Rng; | |
use std::hint::black_box; | |
use std::time::Instant; | |
fn main() { | |
const N: usize = 1024 * 1024 * 1024; |