summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Thielen <github@jont.cc>2019-12-09 21:04:54 -0600
committerJon Thielen <github@jont.cc>2019-12-09 21:04:54 -0600
commit8707693c0418fb7c49e85d872f02b3021f057cae (patch)
tree4486c67e3e844af63139264a4a8f7ea2fc39ccb2
parentaace78d3a61591bf9dfbf7fa7fe780c2ad220cc9 (diff)
downloadpint-8707693c0418fb7c49e85d872f02b3021f057cae.tar.gz
Add link to wraps in NumPy doc commentary on performance
-rw-r--r--docs/numpy.rst3
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`).