diff options
author | mattip <matti.picus@gmail.com> | 2019-06-16 14:00:00 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-06-26 00:08:23 +0300 |
commit | 02f63e0f36d2f6c81b6720229b05518a573aa5cf (patch) | |
tree | 9e3c5f5a26fc1ae956975677f30a6b94f3aade5c /benchmarks | |
parent | 37a1ad069a800f5ef98286f25fb3fb632375168d (diff) | |
download | numpy-02f63e0f36d2f6c81b6720229b05518a573aa5cf.tar.gz |
MAINT: remove xoshiro* BitGenerators
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/benchmarks/bench_random.py | 6 |
1 files changed, 2 insertions, 4 deletions
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 |