summaryrefslogtreecommitdiff
path: root/doc/source/reference/random/bit_generators
Commit message (Collapse)AuthorAgeFilesLines
* DOC: fix referencesRobert Kern2023-04-141-1/+1
|
* DOC: reorganize np.random index page for general personaRobert Kern2023-04-141-0/+2
|
* DOC: Refer to bitgenerator and rename bitgenSebastian Berg2023-02-141-3/+3
|
* DOC: Improve docs around generator spawningSebastian Berg2023-02-141-0/+12
| | | | Trying to address Robert Kerns review comments.
* DOC: RST Titles Underline reordering (#21677)Matthias Bussonnier2022-06-086-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 codespellDimitri Papadopoulos2021-09-211-1/+1
|
* DOC: Document PCG64DXSM.Robert Kern2021-05-042-4/+40
|
* MAINT: Fix typo SeepSequenceCharles Harris2020-12-191-1/+1
|
* DOC: random: add some examples for SeedSequenceEvgeni Burovski2020-12-171-0/+38
| | | | | Based on https://mail.python.org/pipermail/numpy-discussion/2020-December/081323.html
* DOC: Fix for buildling with sphinx 3takanori-pskq2020-11-064-4/+8
|
* MAINT: Change Congruent to Congruential in PCGCharles Harris2019-11-281-2/+2
| | | [skip ci]
* DOC: Fix abbreviation of PCG64Martin Thoma2019-11-281-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 Picus2019-11-191-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 reviewmattip2019-10-171-12/+12
|
* DOC: clean up for moved references, remove ISeedSequencemattip2019-10-132-22/+10
|
* API: move bit_generator and generator to be privatemattip2019-10-112-4/+4
|
* DOC: fix doc linking, was referencing private submodules.Ralf Gommers2019-08-254-13/+5
| | | | Closes gh-14359
* DOC: clean up examples.Robert Kern2019-06-271-1/+1
|
* DOC: np.random documentation cleanup and expansion.Robert Kern2019-06-271-24/+65
|
* Merge pull request #13837 from mattip/seedsequence2Charles Harris2019-06-261-2/+23
|\ | | | | MAINT, BUG: fixes from seedsequence
| * DOC: fixup docs for current set of BitGeneratorsmattip2019-06-261-2/+23
| |
* | DOC: Add SFC64 to the documentation.Robert Kern2019-06-252-0/+29
|/
* MAINT: remove leftover files, fix docsmattip2019-06-261-2/+2
|
* ENH: use SeedSequence to generate entropy for seedingmattip2019-06-265-12/+45
|
* MAINT: remove xoshiro* BitGeneratorsmattip2019-06-263-72/+0
|
* MAINT: remove ThreeFry BitGeneratormattip2019-06-252-37/+0
|
* MAINT: remove pcg32 BitGeneratormattip2019-06-252-35/+0
|
* MAINT: remove dSFMTmattip2019-06-162-37/+0
|
* Revert "MAINT: Implement API changes for randomgen-derived code"Kevin Sheppard2019-05-273-3/+73
| | | | This reverts commit 17e0070df93f4262908f884dca4b08cb7d0bba7f.
* MAINT: remove threefry32, xoroshiro128, xorshift1024 BitGeneratorsmattip2019-05-204-118/+0
|
* MAINT: Implement API changes for randomgen-derived codemattip2019-05-2010-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