NumPy memory observability and explanation tool
Project description
npguard
npguard is a NumPy memory observability and explanation tool.
It helps developers understand why NumPy memory usage spikes by detecting temporary allocations and explaining their causes, with safe, opt-in suggestions to reduce memory pressure.
npguard focuses on explanation, not automatic optimization.
Installation
pip install npguard
PyPI: https://pypi.org/project/npguard/
Motivation
NumPy can silently allocate large temporary arrays during chained expressions, broadcasting, or forced copies.
For example:
b = a * 2 + a.mean(axis=0) - 1
This single line can create multiple full-sized temporary arrays, leading to sudden memory spikes that are not obvious from the code and are often poorly explained by traditional profilers.
npguard exists to answer the question:
“Why did memory spike here?”
Features
-
Watch NumPy-heavy code blocks
-
Detect memory pressure and hidden temporary allocations
-
Estimate temporary memory usage and temporary array counts
-
Explain likely causes (chained ops, broadcasting, repeated allocations)
-
Provide safe, opt-in optimization suggestions
-
Multiple ergonomics:
- context manager
- decorator
- capture API
- programmatic access
What npguard does NOT do
- Does not modify NumPy behavior
- Does not monkey-patch NumPy
- Does not automatically reuse buffers
- Does not rewrite user code
- Does not detect memory leaks
- Is not a production monitoring tool
npguard is intended for development and debugging, not runtime enforcement.
Example Usage
import numpy as np
import npguard as ng
# -----------------------------------
# 1. Basic block observation
# -----------------------------------
with ng.memory_watcher("basic_block"):
a = np.random.rand(10_000, 100)
ng.register_array(a, "a")
b = a * 2 + a.mean(axis=0) - 1
ng.register_array(b, "b")
c = np.ascontiguousarray(b.T)
ng.register_array(c, "c")
ng.report()
ng.suggest()
# -----------------------------------
# 2. Silent + capture API
# -----------------------------------
with ng.capture("captured_block") as obs:
x = np.random.rand(10_000, 100)
ng.register_array(x, "x")
y = x * 3
ng.register_array(y, "y")
print("\nCaptured observation:")
print(obs)
# -----------------------------------
# 3. Decorator API (@watch)
# -----------------------------------
@ng.watch("decorated_function", warn_threshold_mb=5)
def compute_step():
a = np.random.rand(10_000, 100)
ng.register_array(a, "a")
return a * 2 + a.mean(axis=0)
compute_step()
ng.suggest()
# -----------------------------------
# 4. profile() helper
# -----------------------------------
def pipeline():
a = np.random.rand(10_000, 100)
ng.register_array(a, "a")
return np.ascontiguousarray(a.T)
ng.profile(pipeline)
ng.suggest()
# -----------------------------------
# 5. last_observation() + reset()
# -----------------------------------
print("\nLast observation dict:")
print(ng.last_observation())
ng.reset()
print("\nAfter reset():")
print(ng.last_observation())
Example Output (abridged)
[npguard] Memory Watch: basic_block
Python peak diff: 24.02 MB
NumPy live arrays: 0.00 MB
Estimated temporaries: 24.02 MB
Estimated temporary arrays: 3
⚠️ Memory pressure detected
Likely temporary allocations caused by chained operations or broadcasting
When to Use npguard
- Debugging unexpected NumPy memory spikes
- Understanding temporary array creation
- Learning memory-aware NumPy patterns
- Investigating OOMs during pipeline scaling
- Second-pass performance and memory analysis
Target Audience
- NumPy users working with medium to large arrays
- Developers debugging memory pressure (not leaks)
- Engineers who want explanations rather than automatic optimization
Comparison with Existing Tools
- Traditional profilers show how much memory is used, not why
- Leak detectors focus on long-lived leaks, not short-lived spikes
- NumPy itself does not expose temporary allocation behavior at a high level
npguard complements these tools by explaining temporary allocation pressure at the code-block or function level.
Project Status
- Version: 0.2.0
- Status: early but stable
- API: intentionally small and conservative
Future versions may improve explanation quality and aggregation, but will preserve the explanation-first philosophy.
License
MIT License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file npguard-0.2.0.tar.gz.
File metadata
- Download URL: npguard-0.2.0.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
044cb0960cb1b4708e9d99bf8b6a53f9a1e30fba318b48cc37a9603c7f521ae3
|
|
| MD5 |
3d6a887c54b7518074c08e9e7cf2ae51
|
|
| BLAKE2b-256 |
7fc081982892fcabef9f573862ced801a9922b0a277455c1c91e913cfc4c9309
|
File details
Details for the file npguard-0.2.0-py3-none-any.whl.
File metadata
- Download URL: npguard-0.2.0-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4ea85e00724857f52bbc3d9a35db1ed507b87b37c784d2b391b552c64877ef1
|
|
| MD5 |
171eae37b90e68425a4a4be1d3df884e
|
|
| BLAKE2b-256 |
a132ff4e055da4206e20b53f23f776bcef2c05731f10c4114060d93fc9f26deb
|