summaryrefslogtreecommitdiff
path: root/doc/source/reference/random/performance.py
Commit message (Collapse)AuthorAgeFilesLines
* STY: Add spaces after commas.Charles Harris2021-05-041-1/+1
|
* DOC: Add PCG64DXSM to performance-measuring script.Robert Kern2021-05-041-3/+3
|
* MAINT: OrderedDict is no longer necessary from Python 3.7Mike Taves2021-03-081-5/+4
|
* DOC: Update performance numbersKevin Sheppard2019-06-271-2/+15
| | | | Update cross-platform performance numbers
* DOC: Update benchmark codes to match current set.Robert Kern2019-06-251-2/+2
|
* MAINT: remove xoshiro* BitGeneratorsmattip2019-06-261-3/+2
|
* MAINT: remove dSFMTmattip2019-06-161-2/+2
|
* Revert "MAINT: Implement API changes for randomgen-derived code"Kevin Sheppard2019-05-271-17/+21
| | | | This reverts commit 17e0070df93f4262908f884dca4b08cb7d0bba7f.
* MAINT: Remove remnants of bit generatorsKevin Sheppard2019-05-271-4/+3
| | | | | Remove traces of the three removed bit generators Add lock to Cython examples
* MAINT: Implement API changes for randomgen-derived codemattip2019-05-201-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 modesmattip2019-05-201-0/+74
skip doctests that require scipy move original mtrand module to _mtrand adjust documentation for namespace change