diff options
author | Jon Thielen <github@jont.cc> | 2019-12-09 21:04:54 -0600 |
---|---|---|
committer | Jon Thielen <github@jont.cc> | 2019-12-09 21:04:54 -0600 |
commit | 8707693c0418fb7c49e85d872f02b3021f057cae (patch) | |
tree | 4486c67e3e844af63139264a4a8f7ea2fc39ccb2 | |
parent | aace78d3a61591bf9dfbf7fa7fe780c2ad220cc9 (diff) | |
download | pint-8707693c0418fb7c49e85d872f02b3021f057cae.tar.gz |
Add link to wraps in NumPy doc commentary on performance
-rw-r--r-- | docs/numpy.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/numpy.rst b/docs/numpy.rst index bf23b36..c4965ee 100644 --- a/docs/numpy.rst +++ b/docs/numpy.rst @@ -156,7 +156,8 @@ information on these protocols, see This behaviour introduces some performance penalties and increased memory usage. Quantities that must be converted to other units require additional memory and CPU cycles. Therefore, for numerically intensive code, you -might want to convert the objects first and then use directly the magnitude. +might want to convert the objects first and then use directly the magnitude, +such as by using Pint's `wraps` utility (see :ref:`wrapping`). |