summaryrefslogtreecommitdiff
path: root/benchmarks
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2019-06-25 13:21:01 -0700
committerGitHub <noreply@github.com>2019-06-25 13:21:01 -0700
commit37a1ad069a800f5ef98286f25fb3fb632375168d (patch)
tree9cf8d4623be75cd7b2a467f430566df9b421f8a1 /benchmarks
parenta1cd310ea6192945b7f4e452ad5794b291da77a5 (diff)
parent578cf428470b6bcaaf5198b63acdabc251512612 (diff)
downloadnumpy-37a1ad069a800f5ef98286f25fb3fb632375168d.tar.gz
Merge pull request #13833 from mattip/remove-threefry
MAINT: remove ThreeFry BitGenerator
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/benchmarks/bench_random.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmarks/benchmarks/bench_random.py b/benchmarks/benchmarks/bench_random.py
index 1555ad2f4..38f11b503 100644
--- a/benchmarks/benchmarks/bench_random.py
+++ b/benchmarks/benchmarks/bench_random.py
@@ -93,7 +93,7 @@ nom_size = 100000
class RNG(Benchmark):
param_names = ['rng']
params = ['PCG64', 'MT19937', 'Xoshiro256',
- 'Xoshiro512', 'Philox', 'ThreeFry', 'numpy']
+ 'Xoshiro512', 'Philox', 'numpy']
def setup(self, bitgen):
if bitgen == 'numpy':
@@ -135,7 +135,7 @@ class Bounded(Benchmark):
u64 = np.uint64
param_names = ['rng', 'dt_max']
params = [['PCG64', 'MT19937','Xoshiro256',
- 'Xoshiro512', 'Philox', 'ThreeFry', 'numpy'],
+ 'Xoshiro512', 'Philox', 'numpy'],
[[u8, 95],
[u8, 64], # Worst case for legacy
[u8, 127], # Best case for legacy