Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | STY: Add spaces after commas. | Charles Harris | 2021-05-04 | 1 | -1/+1 |
| | |||||
* | DOC: Add PCG64DXSM to performance-measuring script. | Robert Kern | 2021-05-04 | 1 | -3/+3 |
| | |||||
* | MAINT: OrderedDict is no longer necessary from Python 3.7 | Mike Taves | 2021-03-08 | 1 | -5/+4 |
| | |||||
* | DOC: Update performance numbers | Kevin Sheppard | 2019-06-27 | 1 | -2/+15 |
| | | | | Update cross-platform performance numbers | ||||
* | DOC: Update benchmark codes to match current set. | Robert Kern | 2019-06-25 | 1 | -2/+2 |
| | |||||
* | MAINT: remove xoshiro* BitGenerators | mattip | 2019-06-26 | 1 | -3/+2 |
| | |||||
* | MAINT: remove dSFMT | mattip | 2019-06-16 | 1 | -2/+2 |
| | |||||
* | Revert "MAINT: Implement API changes for randomgen-derived code" | Kevin Sheppard | 2019-05-27 | 1 | -17/+21 |
| | | | | This reverts commit 17e0070df93f4262908f884dca4b08cb7d0bba7f. | ||||
* | MAINT: Remove remnants of bit generators | Kevin Sheppard | 2019-05-27 | 1 | -4/+3 |
| | | | | | Remove traces of the three removed bit generators Add lock to Cython examples | ||||
* | MAINT: Implement API changes for randomgen-derived code | mattip | 2019-05-20 | 1 | -11/+9 |
| | | | | | | | | | | | | | | | | | | | | | remove numpy.random.gen, BRNG.generator, pcg*, rand, randn remove use_mask and Lemire's method, fix benchmarks for PCG removal convert brng to bitgen (in C) and bit_generator (in python) convert base R{NG,andom.*} to BitGenerator, fix last commit randint -> integers, remove rand, randn, random_integers RandomGenerator -> Generator, more "basic RNG" -> BitGenerator random_sample -> random, jump -> jumped, resync with randomgen Remove derived code from entropy Port over changes accepted in upstream to protect log(0.0) where relevant fix doctests for jumped, better document choice Remove Python 2.7 shims Use NPY_INLINE to simplify Fix performance.py to work Renam directory brng to bit_generators Fix examples wiht new directory structure Clarify relationship to historical RandomState Remove references to .generator Rename xoshiro256/512starstar | ||||
* | BUG: __dealloc__ can be called without __init__ in some error modes | mattip | 2019-05-20 | 1 | -0/+74 |
skip doctests that require scipy move original mtrand module to _mtrand adjust documentation for namespace change |