summaryrefslogtreecommitdiff
path: root/tools/allocation_tracking/README.md
Commit message (Collapse)AuthorAgeFilesLines
* Deleted tools/allocation_tracking/README.mdJules Kouatchou2023-04-261-86/+0
|
* Provided an example on how to use np.lib.tracemalloc_domain.Jules Kouatchou2023-04-221-5/+84
| | | | This is meant to address Issue 14766.
* DEP: remove allocation_tracking, deprecate PyDataMem_SetEventHook (#20394)Matti Picus2021-11-181-6/+2
| | | | | | | | | | | | | * DEP: remove allocation_tracking * DOC: add release note * DEP: deprecate PyDataMem_SetEventHook * DOC: fix name of release note * fixes from review * DOC: document deprecation of PyDataMem_EventHookFunc
* ENH: add support for python3.6 memory tracingJulian Taylor2017-04-281-0/+11
Python 3.6 added a private API for tracing arbitrary memory allocations so the tracemalloc module [0] can be used with numpy. closes gh-4663 [0] https://docs.python.org/3/library/tracemalloc.html