summaryrefslogtreecommitdiff
path: root/doc/source/reference/random
Commit message (Collapse)AuthorAgeFilesLines
...
* | edited opening statement per PR feedbackOleksandr Pavlyk2019-07-171-2/+3
| |
* | fixed likely type in the quick start opening sentence of devdoc referenceOleksandr Pavlyk2019-07-161-1/+1
| |
* | DOC: show workaround for backward compatibilitymattip2019-07-141-0/+12
|/
* DOC: emphasize random API changesmattip2019-07-092-7/+27
|
* ENH: Rename default_gen to default_rngRobert Kern2019-06-293-9/+9
|
* Merge pull request #13859 from bashtage/update-perf-pcgCharles Harris2019-06-281-25/+25
|\ | | | | DOC: Update performance numbers for PCG64
| * DOC: Update performance numbersKevin Sheppard2019-06-281-25/+25
| | | | | | | | Update PCG performance numbers using the code in #13858
* | ENH: np.random.default_gen() (#13840)Robert Kern2019-06-283-11/+14
|/ | | * ENH: Rename seed_seq argument to seed and replace Generator() with default_gen()
* Merge pull request #13849 from rkern/doc/random-cleanupsCharles Harris2019-06-276-180/+289
|\ | | | | DOC: np.random documentation cleanup and expansion.
| * DOC: Make sure canonical numpy.random target is the index.Robert Kern2019-06-272-2/+2
| |
| * DOC: Use old title of np.random sectionRobert Kern2019-06-271-2/+2
| |
| * DOC: clean up examples.Robert Kern2019-06-272-9/+10
| |
| * DOC: fix reference linksmattip2019-06-272-21/+21
| |
| * DOC: typoRobert Kern2019-06-271-1/+1
| |
| * DOC: Expand on the recommendations.Robert Kern2019-06-271-2/+22
| |
| * DOC: np.random documentation cleanup and expansion.Robert Kern2019-06-275-155/+243
| |
* | DOC: Update performance numbersKevin Sheppard2019-06-272-59/+72
|/ | | | Update cross-platform performance numbers
* Merge pull request #13837 from mattip/seedsequence2Charles Harris2019-06-263-81/+80
|\ | | | | MAINT, BUG: fixes from seedsequence
| * DOC: fixup docs for current set of BitGeneratorsmattip2019-06-263-81/+80
| |
* | DOC: Add SFC64 to the documentation.Robert Kern2019-06-252-0/+29
| |
* | DOC: Update benchmark codes to match current set.Robert Kern2019-06-251-2/+2
|/
* MAINT: remove leftover files, fix docsmattip2019-06-262-4/+3
|
* ENH: use SeedSequence to generate entropy for seedingmattip2019-06-266-40/+84
|
* MAINT: remove xoshiro* BitGeneratorsmattip2019-06-2611-115/+27
|
* MAINT: remove ThreeFry BitGeneratormattip2019-06-252-37/+0
|
* MAINT: remove pcg32 BitGeneratormattip2019-06-252-35/+0
|
* MAINT: remove dSFMTmattip2019-06-166-51/+5
|
* Merge pull request #13665 from bashtage/rkern-pcg-patchMatti Picus2019-05-311-0/+69
|\ | | | | MAINT: Use intrinsics in Win64-PCG64
| * DOC: Add cross-platform performanceKevin Sheppard2019-05-311-0/+69
| | | | | | | | Add information on cross-platform performance differences.
* | MAINT: Misc. typo fixes (#13664)luzpaz2019-05-312-4/+4
|/ | | | | | * DOC, MAINT: Misc. typo fixes Found via `codespell`
* Revert "MAINT: Implement API changes for randomgen-derived code"Kevin Sheppard2019-05-279-76/+158
| | | | This reverts commit 17e0070df93f4262908f884dca4b08cb7d0bba7f.
* MAINT: Remove remnants of bit generatorsKevin Sheppard2019-05-276-98/+93
| | | | | Remove traces of the three removed bit generators Add lock to Cython examples
* MAINT: remove threefry32, xoroshiro128, xorshift1024 BitGeneratorsmattip2019-05-206-138/+8
|
* MAINT: Implement API changes for randomgen-derived codemattip2019-05-2025-532/+308
| | | | | | | | | | | | | | | | | | | | | 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
* ENH: Add closed generator to randintKevin Sheppard2019-05-201-64/+2
| | | | Add closed option to randint to simplify some cases
* DOC: tighten up documentation, add a table of comparisonmattip2019-05-206-75/+169
|
* MAINT: remove legacy, refactor legacy -> mtrand in docsmattip2019-05-203-51/+64
|
* BUG: __dealloc__ can be called without __init__ in some error modesmattip2019-05-2024-0/+1644
skip doctests that require scipy move original mtrand module to _mtrand adjust documentation for namespace change