8000 ENH: SFC64 BitGenerator by rkern · Pull Request #13838 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

ENH: SFC64 BitGenerator #13838

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 26, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
DOC: Add SFC64 to the documentation.
  • Loading branch information
rkern committed Jun 26, 2019
commit 42f8ed33dbc8c911a63a73df91e298505019eefc
1 change: 1 addition & 0 deletions doc/source/reference/random/bit_generators/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ access the functions provided, e.g., `numba <https://numba.pydata.org>`_.
MT19937 <mt19937>
PCG64 <pcg64>
Philox <philox>
SFC64 <sfc64>

Seeding and Entropy
-------------------
Expand Down
28 changes: 28 additions & 0 deletions doc/source/reference/random/bit_generators/sfc64.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
SFC64 Small Fast Chaotic PRNG
-----------------------------

.. module:: numpy.random.sfc64

.. currentmodule:: numpy.random.sfc64

.. autoclass:: SFC64
:exclude-members:

State
=====

.. autosummary::
:toctree: generated/

~SFC64.state

Extending
=========
.. autosummary::
:toctree: generated/

~SFC64.cffi
~SFC64.ctypes



0