Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | DOC: fix references | Robert Kern | 2023-04-14 | 1 | -1/+1 |
| | |||||
* | DOC: reorganize np.random index page for general persona | Robert Kern | 2023-04-14 | 1 | -0/+2 |
| | |||||
* | DOC: Refer to bitgenerator and rename bitgen | Sebastian Berg | 2023-02-14 | 1 | -3/+3 |
| | |||||
* | DOC: Improve docs around generator spawning | Sebastian Berg | 2023-02-14 | 1 | -0/+12 |
| | | | | Trying to address Robert Kerns review comments. | ||||
* | DOC: RST Titles Underline reordering (#21677) | Matthias Bussonnier | 2022-06-08 | 6 | -22/+22 |
| | | | | | | | | | | | | | | | | | | | | | * ~ not ^ * = skipped for - * swap - and = underline in files they are swapped * * to = in header underline * - to = and * to - for consitency * A few more change * -> ~ * use ~ instead of + * DOC: Fixup `c-api/array.rst` with further ^ with ~ replacement There is still a fourth level here, which remains using " Co-authored-by: Sebastian Berg <sebastian@sipsolutions.net> | ||||
* | DOC: Typos found by codespell | Dimitri Papadopoulos | 2021-09-21 | 1 | -1/+1 |
| | |||||
* | DOC: Document PCG64DXSM. | Robert Kern | 2021-05-04 | 2 | -4/+40 |
| | |||||
* | MAINT: Fix typo SeepSequence | Charles Harris | 2020-12-19 | 1 | -1/+1 |
| | |||||
* | DOC: random: add some examples for SeedSequence | Evgeni Burovski | 2020-12-17 | 1 | -0/+38 |
| | | | | | Based on https://mail.python.org/pipermail/numpy-discussion/2020-December/081323.html | ||||
* | DOC: Fix for buildling with sphinx 3 | takanori-pskq | 2020-11-06 | 4 | -4/+8 |
| | |||||
* | MAINT: Change Congruent to Congruential in PCG | Charles Harris | 2019-11-28 | 1 | -2/+2 |
| | | | [skip ci] | ||||
* | DOC: Fix abbreviation of PCG64 | Martin Thoma | 2019-11-28 | 1 | -1/+1 |
| | | | | | | | See publication by O'Neill (reference 2): "The name for the family, PCG, stands for permuted congruential generator [...]" | ||||
* | API: restructure and document numpy.random C-API (#14604) | Matti Picus | 2019-11-19 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | * API: restructure and document numpy.random C-API * DOC: fix bad reference * API: ship, document, and start to test numpy.random C-API examples * API, DOC, TST: fix tests, refactor documentation to include snippets * BUILD: move public headers to numpy/core/include/numpy/random * TST: ignore DeprecationWarnings in setuptools and numba * DOC: document the C-API as used from Cython | ||||
* | TEST, DOC: fixes from review | mattip | 2019-10-17 | 1 | -12/+12 |
| | |||||
* | DOC: clean up for moved references, remove ISeedSequence | mattip | 2019-10-13 | 2 | -22/+10 |
| | |||||
* | API: move bit_generator and generator to be private | mattip | 2019-10-11 | 2 | -4/+4 |
| | |||||
* | DOC: fix doc linking, was referencing private submodules. | Ralf Gommers | 2019-08-25 | 4 | -13/+5 |
| | | | | Closes gh-14359 | ||||
* | DOC: clean up examples. | Robert Kern | 2019-06-27 | 1 | -1/+1 |
| | |||||
* | DOC: np.random documentation cleanup and expansion. | Robert Kern | 2019-06-27 | 1 | -24/+65 |
| | |||||
* | Merge pull request #13837 from mattip/seedsequence2 | Charles Harris | 2019-06-26 | 1 | -2/+23 |
|\ | | | | | MAINT, BUG: fixes from seedsequence | ||||
| * | DOC: fixup docs for current set of BitGenerators | mattip | 2019-06-26 | 1 | -2/+23 |
| | | |||||
* | | DOC: Add SFC64 to the documentation. | Robert Kern | 2019-06-25 | 2 | -0/+29 |
|/ | |||||
* | MAINT: remove leftover files, fix docs | mattip | 2019-06-26 | 1 | -2/+2 |
| | |||||
* | ENH: use SeedSequence to generate entropy for seeding | mattip | 2019-06-26 | 5 | -12/+45 |
| | |||||
* | MAINT: remove xoshiro* BitGenerators | mattip | 2019-06-26 | 3 | -72/+0 |
| | |||||
* | MAINT: remove ThreeFry BitGenerator | mattip | 2019-06-25 | 2 | -37/+0 |
| | |||||
* | MAINT: remove pcg32 BitGenerator | mattip | 2019-06-25 | 2 | -35/+0 |
| | |||||
* | MAINT: remove dSFMT | mattip | 2019-06-16 | 2 | -37/+0 |
| | |||||
* | Revert "MAINT: Implement API changes for randomgen-derived code" | Kevin Sheppard | 2019-05-27 | 3 | -3/+73 |
| | | | | This reverts commit 17e0070df93f4262908f884dca4b08cb7d0bba7f. | ||||
* | MAINT: remove threefry32, xoroshiro128, xorshift1024 BitGenerators | mattip | 2019-05-20 | 4 | -118/+0 |
| | |||||
* | MAINT: Implement API changes for randomgen-derived code | mattip | 2019-05-20 | 10 | -0/+358 |
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 |