summaryrefslogtreecommitdiff
path: root/numpy/random/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/random/__init__.py')
-rw-r--r--numpy/random/__init__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/numpy/random/__init__.py b/numpy/random/__init__.py
index 7efa5c07f..2e8f99fe3 100644
--- a/numpy/random/__init__.py
+++ b/numpy/random/__init__.py
@@ -17,6 +17,7 @@ BitGenerator Streams that work with Generator
--------------------------------------------- ---
MT19937
PCG64
+PCG64DXSM
Philox
SFC64
============================================= ===
@@ -183,13 +184,14 @@ from . import _bounded_integers
from ._generator import Generator, default_rng
from .bit_generator import SeedSequence, BitGenerator
from ._mt19937 import MT19937
-from ._pcg64 import PCG64
+from ._pcg64 import PCG64, PCG64DXSM
from ._philox import Philox
from ._sfc64 import SFC64
from .mtrand import *
__all__ += ['Generator', 'RandomState', 'SeedSequence', 'MT19937',
- 'Philox', 'PCG64', 'SFC64', 'default_rng', 'BitGenerator']
+ 'Philox', 'PCG64', 'PCG64DXSM', 'SFC64', 'default_rng',
+ 'BitGenerator']
def __RandomState_ctor():