summaryrefslogtreecommitdiff
path: root/numpy/random/examples/cython
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: move numpy/random/examples -> numpy/random/_examplesmattip2019-11-193-173/+0
|
* API: restructure and document numpy.random C-API (#14604)Matti Picus2019-11-193-22/+31
| | | | | | | | | | | | | | | | * 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
* MAINT: remove xoshiro* BitGeneratorsmattip2019-06-262-6/+6
|
* MAINT: Remove remnants of bit generatorsKevin Sheppard2019-05-272-19/+33
| | | | | Remove traces of the three removed bit generators Add lock to Cython examples
* MAINT: Implement API changes for randomgen-derived codemattip2019-05-203-21/+31
| | | | | | | | | | | | | | | | | | | | | 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
* BENCH: convert bencmarks to asv formatmattip2019-05-203-0/+140
remove files that were part of the origal repo rework randomgen docs to integrate with numpy and fix some links remove convenience functions, require explicit call to gen.brng move code out of numpy.random.randomgen into numpy.random