Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | edited opening statement per PR feedback | Oleksandr Pavlyk | 2019-07-17 | 1 | -2/+3 | |
| | | ||||||
* | | fixed likely type in the quick start opening sentence of devdoc reference | Oleksandr Pavlyk | 2019-07-16 | 1 | -1/+1 | |
| | | ||||||
* | | DOC: show workaround for backward compatibility | mattip | 2019-07-14 | 1 | -0/+12 | |
|/ | ||||||
* | DOC: emphasize random API changes | mattip | 2019-07-09 | 2 | -7/+27 | |
| | ||||||
* | ENH: Rename default_gen to default_rng | Robert Kern | 2019-06-29 | 3 | -9/+9 | |
| | ||||||
* | Merge pull request #13859 from bashtage/update-perf-pcg | Charles Harris | 2019-06-28 | 1 | -25/+25 | |
|\ | | | | | DOC: Update performance numbers for PCG64 | |||||
| * | DOC: Update performance numbers | Kevin Sheppard | 2019-06-28 | 1 | -25/+25 | |
| | | | | | | | | Update PCG performance numbers using the code in #13858 | |||||
* | | ENH: np.random.default_gen() (#13840) | Robert Kern | 2019-06-28 | 3 | -11/+14 | |
|/ | | | * ENH: Rename seed_seq argument to seed and replace Generator() with default_gen() | |||||
* | Merge pull request #13849 from rkern/doc/random-cleanups | Charles Harris | 2019-06-27 | 6 | -180/+289 | |
|\ | | | | | DOC: np.random documentation cleanup and expansion. | |||||
| * | DOC: Make sure canonical numpy.random target is the index. | Robert Kern | 2019-06-27 | 2 | -2/+2 | |
| | | ||||||
| * | DOC: Use old title of np.random section | Robert Kern | 2019-06-27 | 1 | -2/+2 | |
| | | ||||||
| * | DOC: clean up examples. | Robert Kern | 2019-06-27 | 2 | -9/+10 | |
| | | ||||||
| * | DOC: fix reference links | mattip | 2019-06-27 | 2 | -21/+21 | |
| | | ||||||
| * | DOC: typo | Robert Kern | 2019-06-27 | 1 | -1/+1 | |
| | | ||||||
| * | DOC: Expand on the recommendations. | Robert Kern | 2019-06-27 | 1 | -2/+22 | |
| | | ||||||
| * | DOC: np.random documentation cleanup and expansion. | Robert Kern | 2019-06-27 | 5 | -155/+243 | |
| | | ||||||
* | | DOC: Update performance numbers | Kevin Sheppard | 2019-06-27 | 2 | -59/+72 | |
|/ | | | | Update cross-platform performance numbers | |||||
* | Merge pull request #13837 from mattip/seedsequence2 | Charles Harris | 2019-06-26 | 3 | -81/+80 | |
|\ | | | | | MAINT, BUG: fixes from seedsequence | |||||
| * | DOC: fixup docs for current set of BitGenerators | mattip | 2019-06-26 | 3 | -81/+80 | |
| | | ||||||
* | | DOC: Add SFC64 to the documentation. | Robert Kern | 2019-06-25 | 2 | -0/+29 | |
| | | ||||||
* | | DOC: Update benchmark codes to match current set. | Robert Kern | 2019-06-25 | 1 | -2/+2 | |
|/ | ||||||
* | MAINT: remove leftover files, fix docs | mattip | 2019-06-26 | 2 | -4/+3 | |
| | ||||||
* | ENH: use SeedSequence to generate entropy for seeding | mattip | 2019-06-26 | 6 | -40/+84 | |
| | ||||||
* | MAINT: remove xoshiro* BitGenerators | mattip | 2019-06-26 | 11 | -115/+27 | |
| | ||||||
* | 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 | 6 | -51/+5 | |
| | ||||||
* | Merge pull request #13665 from bashtage/rkern-pcg-patch | Matti Picus | 2019-05-31 | 1 | -0/+69 | |
|\ | | | | | MAINT: Use intrinsics in Win64-PCG64 | |||||
| * | DOC: Add cross-platform performance | Kevin Sheppard | 2019-05-31 | 1 | -0/+69 | |
| | | | | | | | | Add information on cross-platform performance differences. | |||||
* | | MAINT: Misc. typo fixes (#13664) | luzpaz | 2019-05-31 | 2 | -4/+4 | |
|/ | | | | | | * DOC, MAINT: Misc. typo fixes Found via `codespell` | |||||
* | Revert "MAINT: Implement API changes for randomgen-derived code" | Kevin Sheppard | 2019-05-27 | 9 | -76/+158 | |
| | | | | This reverts commit 17e0070df93f4262908f884dca4b08cb7d0bba7f. | |||||
* | MAINT: Remove remnants of bit generators | Kevin Sheppard | 2019-05-27 | 6 | -98/+93 | |
| | | | | | Remove traces of the three removed bit generators Add lock to Cython examples | |||||
* | MAINT: remove threefry32, xoroshiro128, xorshift1024 BitGenerators | mattip | 2019-05-20 | 6 | -138/+8 | |
| | ||||||
* | MAINT: Implement API changes for randomgen-derived code | mattip | 2019-05-20 | 25 | -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 randint | Kevin Sheppard | 2019-05-20 | 1 | -64/+2 | |
| | | | | Add closed option to randint to simplify some cases | |||||
* | DOC: tighten up documentation, add a table of comparison | mattip | 2019-05-20 | 6 | -75/+169 | |
| | ||||||
* | MAINT: remove legacy, refactor legacy -> mtrand in docs | mattip | 2019-05-20 | 3 | -51/+64 | |
| | ||||||
* | BUG: __dealloc__ can be called without __init__ in some error modes | mattip | 2019-05-20 | 24 | -0/+1644 | |
skip doctests that require scipy move original mtrand module to _mtrand adjust documentation for namespace change |