Created
July 1, 2023 10:00
-
-
Save vigna/65dbf7690083a6eed405f8fcd36d25a4 to your computer and use it in GitHub Desktop.
Basic ChaCha12/ChaCha8/xoshiro256++ speed test
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() { | |
const N: usize = 1000000000; | |
let start = Instant::now(); | |
let mut r = StdRng::seed_from_u64(0); | |
for _ in 0..N { | |
black_box(r.gen::<u64>()); | |
} | |
println!("ChaCha12 {}", start.elapsed().as_nanos() as f64 / N as f64); | |
let start = Instant::now(); | |
let mut r = ChaCha8Rng::seed_from_u64(0); | |
for _ in 0..N { | |
black_box(r.next_u64()); | |
} | |
println!("ChaCha8 {}", start.elapsed().as_nanos() as f64 / N as f64); | |
let start = Instant::now(); | |
let mut r = SmallRng::seed_from_u64(0); | |
for _ in 0..N { | |
black_box(r.gen::<u64>()); | |
} | |
println!( | |
"xoshiro256++ {}", | |
start.elapsed().as_nanos() as f64 / N as f64 | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment