From 02f63e0f36d2f6c81b6720229b05518a573aa5cf Mon Sep 17 00:00:00 2001 From: mattip Date: Sun, 16 Jun 2019 14:00:00 +0300 Subject: MAINT: remove xoshiro* BitGenerators --- benchmarks/benchmarks/bench_random.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'benchmarks') diff --git a/benchmarks/benchmarks/bench_random.py b/benchmarks/benchmarks/bench_random.py index 38f11b503..9931d58cc 100644 --- a/benchmarks/benchmarks/bench_random.py +++ b/benchmarks/benchmarks/bench_random.py @@ -92,8 +92,7 @@ nom_size = 100000 class RNG(Benchmark): param_names = ['rng'] - params = ['PCG64', 'MT19937', 'Xoshiro256', - 'Xoshiro512', 'Philox', 'numpy'] + params = ['PCG64', 'MT19937', 'Philox', 'numpy'] def setup(self, bitgen): if bitgen == 'numpy': @@ -134,8 +133,7 @@ class Bounded(Benchmark): u32 = np.uint32 u64 = np.uint64 param_names = ['rng', 'dt_max'] - params = [['PCG64', 'MT19937','Xoshiro256', - 'Xoshiro512', 'Philox', 'numpy'], + params = [['PCG64', 'MT19937', 'Philox', 'numpy'], [[u8, 95], [u8, 64], # Worst case for legacy [u8, 127], # Best case for legacy -- cgit v1.2.1