diff options
author | Matti Picus <matti.picus@gmail.com> | 2021-10-26 19:57:19 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-26 11:57:19 -0500 |
commit | 9d10844277bc5f49724531b44b803ebfde3936ec (patch) | |
tree | e1108c3ba8d8b050575f1bd55b293f65d7858345 | |
parent | e2b36827dcd4b5616339f2881e682eb9dc463f82 (diff) | |
download | numpy-9d10844277bc5f49724531b44b803ebfde3936ec.tar.gz |
DOC: add release note and move NEP 49 to Final (#20194)
* DOC: add release note and move NEP 49 to Final
* fix link
* fix release note
-rw-r--r-- | doc/neps/nep-0049.rst | 4 | ||||
-rw-r--r-- | doc/release/upcoming_changes/17582.new_feature.rst | 8 | ||||
-rw-r--r-- | doc/source/reference/c-api/data_memory.rst | 2 |
3 files changed, 12 insertions, 2 deletions
diff --git a/doc/neps/nep-0049.rst b/doc/neps/nep-0049.rst index 277351e3b..4758edb35 100644 --- a/doc/neps/nep-0049.rst +++ b/doc/neps/nep-0049.rst @@ -3,10 +3,10 @@ NEP 49 — Data allocation strategies =================================== :Author: Matti Picus -:Status: Draft +:Status: Final :Type: Standards Track :Created: 2021-04-18 -:Resolution: http://numpy-discussion.10968.n7.nabble.com/NEP-49-Data-allocation-strategies-tt49185.html +:Resolution: https://mail.python.org/archives/list/numpy-discussion@python.org/thread/YZ3PNTXZUT27B6ITFAD3WRSM3T3SRVK4/#PKYXCTG4R5Q6LIRZC4SEWLNBM6GLRF26 Abstract diff --git a/doc/release/upcoming_changes/17582.new_feature.rst b/doc/release/upcoming_changes/17582.new_feature.rst new file mode 100644 index 000000000..be5997dda --- /dev/null +++ b/doc/release/upcoming_changes/17582.new_feature.rst @@ -0,0 +1,8 @@ +NEP 49 configurable allocators +------------------------------ +As detailed in `NEP 49`_, the function used for allocation of the data segment +of a ndarray can be changed. The policy can be set globally or in a context. +For more information see the NEP and the :ref:`data_memory` reference docs. + +.. _`NEP 49`: https://numpy.org/neps/nep-0049.html + diff --git a/doc/source/reference/c-api/data_memory.rst b/doc/source/reference/c-api/data_memory.rst index 8e2989403..c17f98a2c 100644 --- a/doc/source/reference/c-api/data_memory.rst +++ b/doc/source/reference/c-api/data_memory.rst @@ -1,3 +1,5 @@ +.. _data_memory: + Memory management in NumPy ========================== |