summaryrefslogtreecommitdiff
path: root/benchmarks
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/benchmarks/bench_random.py6
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