An open-source, lightweight CLI utility for ONNX model compatibility validation and performance optimization on Kneron NPUs
Project description
ONNXNPU Toolkit
ONNXNPU Toolkit is an open-source, lightweight CLI utility for ONNX model compatibility validation and performance optimization on Kneron NPUs (KL520–KL730). Built for machine learning engineers and edge-AI developers, it enables you to:
- Automatically detect unsupported ONNX operators before deployment
- Generate detailed JSON or Markdown reports for hardware-specific compatibility
- Customize hardware profiles and override rules to match your NPU target
Streamline your ONNX to NPU workflow, catch integration issues early, and boost edge-AI inference performance.
"Catch unsupported operators early before they derail your model." — Mason Huang
✨ Features (v0.1 — released)
| Feature | Description |
|---|---|
| Operator scan | Fast, dependency‑free static analysis of .onnx files |
| Hardware profiles | Built‑in JSON compatibility tables for common NPUs (KL520 / 530 / 630 / 720 / 730 …) with an override mechanism |
| Clear report | CLI table + optional JSON / Markdown export; highlights unsupported ops and optional‑feature gaps |
| Actionable hints | Suggestions and links to official docs for each unsupported operator |
| Opset update | Upgrade model opset (12 – 18) to match target hardware |
| Shape validation | Shape checker enforcing 4‑D (1, C, H, W) constraint• Rich Markdown / JSON report templates for CI badges |
| Model simplification | Integrate onnx‑sim (onnxnpu opt [input_path]) |
🧭 Roadmap
| Version | Target Date* | Major Items | Notes / Dependencies |
|---|---|---|---|
| 0.3 – Automatic Op Replacement & Slimming | Jul 2025 | • --replace mapping table (e.g., Reshape → Flatten)• Fallback to custom kernels / plugin stubs • Bundle Kneron optimizer_scripts (BN‑Conv fuse, Dropout removal …) |
Needs rule set + regression tests |
| 0.4 – Interactive Viewer | Aug 2025 | • onnxnpu view drag‑and‑drop web UI• Highlight unsupported nodes directly on the graph • Downloadable HTML report |
Likely React + ONNX‑JS; demo hosted on GitHub Pages |
| 0.5 – Extensibility & Ecosystem | Sep 2025 | • Plugin system via Python entry‑points • Community hardware‑profile submission flow • Freeze stable API v1.0 |
Plan to publish on conda‑forge after API stabilisation |
* Dates are tentative and may shift based on resources.
🚀 Quick start
You can use two different CLI commands: onnxnpu or onpu to check, optimize, and modify your ONNX models for NPU deployment. Both commands provide identical functionality with the same syntax.
| Command | Description |
|---|---|
pip install onnxnpu |
Install latest package from PyPI |
onnxnpu list |
Show current available hardware series |
onnxnpu check my_model.onnx -p KL720 |
Check my_model.onnx for the KL720 hardware profile |
onnxnpu check my_model.onnx |
Check my_model.onnx for all built-in profiles |
onnxnpu opt my_model.onnx --opset [version] |
Update model to opset 12~18 |
onnxnpu opt my_model.onnx -o [output_name] |
Optimize the model and save |
onnxnpu -V, onnxnpu --version |
Show version number and exit |
Sample output
════════════════════════════════════════════════════════════
MODEL INFO
════════════════════════════════════════════════════════════
Model name - my_model.onnx
IR version : 6
Opset : 13
Inputs : input float32 [1, 3, 112, 112]
Outputs : output float32 [1, 512]
Dynamic axes : None detected ✓
════════════════════════════════════════════════════════════
HARDWARE COMPATIBILITY - KL520
════════════════════════════════════════════════════════════
+--------+--------------------+-------+-------+
| Status | Operator | Count | Notes |
+--------+--------------------+-------+-------+
| ✓ | Add | 16 | |
| ✓ | BatchNormalization | 18 | |
| ✓ | Conv | 37 | |
| ✓ | Flatten | 1 | |
| ✓ | Gemm | 1 | |
| ✓ | PRelu | 17 | |
+--------+--------------------+-------+-------+
════════════════════════════════════════════════════════════
MEMORY REQUIREMENTS - KL520
════════════════════════════════════════════════════════════
Estimated NEF size: 32.56 MB
USB model limit: 35.00 MB -> OK
Flash model limit: 32.00 MB -> MIGHT EXCEEDS LIMIT
Summary: All operators are supported on KL520 ✓
Total operators: 6 (instances: 90)
🧑💻 API usage
from onnxnpu import Checker, load_profile
checker = Checker("my_model.onnx", profile=load_profile("kl720"))
report = checker.run()
print(report.to_markdown())
# Update opset version
from onnxnpu import update_opset_version
update_opset_version("my_model.onnx", target_version=13)
📖 Hardware profiles
Profiles live under onnxnpu/profiles/*.json.
Each profile declares the operators, attributes, and constraints supported by a particular accelerator.
See docs/PROFILE_SCHEMA.md for the JSON schema.
Contributions for new hardware are very welcome!
A note on language
The primary language of this README is English for wider community reach. A Traditional Chinese translation will be added soon.
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 onnxnpu-0.2.0.tar.gz.
File metadata
- Download URL: onnxnpu-0.2.0.tar.gz
- Upload date:
- Size: 24.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1d490645cffe7c55c73d6864bb1be124d4b21469450294c2bf9051d1560ebc2
|
|
| MD5 |
f0bc0fd8c21c3743209b902264b6fbe8
|
|
| BLAKE2b-256 |
b66b6eed6fd28ce902b3d6ace1859256ddf2b6480385bc82077b22b264e165fc
|
File details
Details for the file onnxnpu-0.2.0-py3-none-any.whl.
File metadata
- Download URL: onnxnpu-0.2.0-py3-none-any.whl
- Upload date:
- Size: 25.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
308f5b755076424d4a6729daeb69e21cbe1adb626c2686983fae550c05cd8b28
|
|
| MD5 |
047d86b80434c79f1ae51fbb75ed864a
|
|
| BLAKE2b-256 |
63255795f4947c18560bda7212aabfbbcc1942edb36472813e4829e09631967d
|