diff options
Diffstat (limited to 'doc/source/reference/random/multithreading.rst')
-rw-r--r-- | doc/source/reference/random/multithreading.rst | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/source/reference/random/multithreading.rst b/doc/source/reference/random/multithreading.rst index 849d64d4e..6883d3672 100644 --- a/doc/source/reference/random/multithreading.rst +++ b/doc/source/reference/random/multithreading.rst @@ -1,9 +1,11 @@ Multithreaded Generation ======================== -The four core distributions all allow existing arrays to be filled using the -``out`` keyword argument. Existing arrays need to be contiguous and -well-behaved (writable and aligned). Under normal circumstances, arrays +The four core distributions (:meth:`~.Generator.random`, +:meth:`~.Generator.standard_normal`, :meth:`~.Generator.standard_exponential`, +and :meth:`~.Generator.standard_gamma`) all allow existing arrays to be filled +using the ``out`` keyword argument. Existing arrays need to be contiguous and +well-behaved (writable and aligned). Under normal circumstances, arrays created using the common constructors such as :meth:`numpy.empty` will satisfy these requirements. |