diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2019-06-25 11:17:24 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-25 11:17:24 -0700 |
commit | a1cd310ea6192945b7f4e452ad5794b291da77a5 (patch) | |
tree | a65532df7fdeef1fce62528a29f87324d4c2afc6 /benchmarks | |
parent | 5a7a4a450295ebe0eb37905d967a3279d4ccdc4d (diff) | |
parent | 083be1f81f25fc548f091f72105f69391bc1a33d (diff) | |
download | numpy-a1cd310ea6192945b7f4e452ad5794b291da77a5.tar.gz |
Merge pull request #13832 from mattip/remove-pcg32
MAINT: remove pcg32 BitGenerator
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/benchmarks/bench_random.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmarks/benchmarks/bench_random.py b/benchmarks/benchmarks/bench_random.py index 3e47d35eb..1555ad2f4 100644 --- a/benchmarks/benchmarks/bench_random.py +++ b/benchmarks/benchmarks/bench_random.py @@ -92,7 +92,7 @@ nom_size = 100000 class RNG(Benchmark): param_names = ['rng'] - params = ['PCG64', 'PCG32', 'MT19937', 'Xoshiro256', + params = ['PCG64', 'MT19937', 'Xoshiro256', 'Xoshiro512', 'Philox', 'ThreeFry', 'numpy'] def setup(self, bitgen): @@ -134,7 +134,7 @@ class Bounded(Benchmark): u32 = np.uint32 u64 = np.uint64 param_names = ['rng', 'dt_max'] - params = [['PCG64', 'PCG32', 'MT19937','Xoshiro256', + params = [['PCG64', 'MT19937','Xoshiro256', 'Xoshiro512', 'Philox', 'ThreeFry', 'numpy'], [[u8, 95], [u8, 64], # Worst case for legacy |