Skip to content

Commit

Permalink
Fix benchnmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
vks committed Sep 14, 2018
1 parent 6f3e185 commit 2697f1a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions benches/generators.rs
Expand Up @@ -11,6 +11,8 @@
extern crate test;
extern crate rand;
extern crate rand_isaac;
extern crate rand_chacha;
extern crate rand_hc128;
extern crate rand_xorshift;

const RAND_BENCH_N: u64 = 1000;
Expand All @@ -20,11 +22,11 @@ use std::mem::size_of;
use test::{black_box, Bencher};

use rand::prelude::*;
use rand::prng::{Hc128Rng, ChaChaRng};
use rand::prng::hc128::Hc128Core;
use rand::rngs::adapter::ReseedingRng;
use rand::rngs::{OsRng, JitterRng, EntropyRng};
use rand_isaac::{IsaacRng, Isaac64Rng};
use rand_chacha::ChaChaRng;
use rand_hc128::{Hc128Rng, Hc128Core};
use rand_xorshift::XorShiftRng;

macro_rules! gen_bytes {
Expand Down

0 comments on commit 2697f1a

Please sign in to comment.