cloud-hypervisor/vendor/registry-40351f815f426200/rdrand/benches/std.rs
Samuel Ortiz d5f5648b37 vendor: Add vendored dependencies
We use cargo vendor to generate a .cargo/config file and the vendor
directory. Vendoring allows us to lock our dependencies and to modify
them easily from the top level Cargo.toml.

We vendor all dependencies, including the crates.io ones, which allows
for network isolated builds.

Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
2019-06-04 17:51:52 +02:00

32 lines
708 B
XML

// #![feature(test)]
// extern crate rand;
// extern crate test;
//
// use test::Bencher;
// use test::black_box;
// use rand::Rng;
// use rand::StdRng;
// use rand::OsRng;
//
// // OsRng is supposed to be the default for crypto uses.
// #[bench]
// fn bench_osrng_u64(b : &mut Bencher) {
// if let Ok(mut gen) = OsRng::new() {
// b.bytes = 8;
// b.iter(|| {
// black_box(gen.next_u64());
// });
// }
// }
//
// // StdRng is the default for everything else.
// #[bench]
// fn bench_stdrng_u64(b : &mut Bencher) {
// if let Ok(mut gen) = StdRng::new() {
// b.bytes = 8;
// b.iter(|| {
// gen.next_u64();
// });
// }
// }