Complete Solution for Running YOLOv10 + Mamba SSM on NVIDIA Jetson
- 🇺🇸 English - Complete documentation in English
- 🇨🇳 中文 - 完整的中文文档
Jetson-Mamba-SSM enables YOLOv10 with Mamba SSM modules on NVIDIA Jetson devices (Orin/Xavier/Nano).
| Feature | Status |
|---|---|
| Mamba-SSM Runtime on Jetson | ✅ Supported |
| ONNX Export | ✅ Supported |
| TensorRT Engine (FP32/FP16/INT8) | ✅ Supported |
| TensorRT 10.x API | ✅ Supported |
| Precision | Inference Time | VRAM |
|---|---|---|
| FP32 | 80ms | 2.1 GB |
| FP16 | 40ms | 1.1 GB |
| INT8 | 25ms | 0.6 GB |
# Install dependencies / 安装依赖
pip install torch einops ninja packaging transformers triton
# Install from GitHub Release / 从 GitHub Release 安装
pip install causal_conv1d-1.6.0+jetson-*.whl
pip install mamba_ssm-2.2.4+jetson-*.whl# Export FP16 engine / 导出 FP16 引擎
yolo export model=best.pt format=engine imgsz=640
# Run inference / 运行推理
yolo detect predict model=best.engine source=image.jpg| Document | Description |
|---|---|
| English Docs | Complete English documentation |
| 中文文档 | 完整的中文使用指南 |
| TensorRT Export Guide | Step-by-step export guide |
| Build Guide | Build from source instructions |
- 🎯 One-Click Installation - Wheel packages with all patches included
- 🔧 libc10.so Fixed - Resolves Jetson platform dependencies
- 📦 ONNX Export - Mamba modules exportable to ONNX format
- 🚀 TensorRT Optimized - FP32/FP16/INT8 multi-precision support
- 📱 Cross-Platform - Supports Orin, Xavier, Nano
jetson-mamba-ssm/
├── README.md # Main entry (this file)
├── README.en-US.md # English documentation
├── README.zh-CN.md # Chinese documentation
├── wheels/ # Pre-compiled wheel packages
├── release/ # GitHub Release packages
├── patches/ # Git patches for source build
├── scripts/ # Utility scripts
│ ├── main.py # Unified entry point
│ ├── install/ # Installation scripts
│ ├── test/ # Test scripts
│ └── utils/ # Utility scripts
└── docs/ # Detailed documentation
| Component | Version |
|---|---|
| Hardware | Jetson Orin / Xavier / Nano |
| OS | Linux (JetPack R36) |
| CUDA | 12.6 |
| TensorRT | 10.7.0 |
| Python | 3.10+ |
Contributions are welcome! Please visit our GitHub Repository to:
- Report issues
- Submit pull requests
- Suggest features
MIT License - See LICENSE file for details.
- Mamba-SSM - Tri Dao, Albert Gu
- causal-conv1d - Tri Dao
- Ultralytics YOLOv10 - YOLOv10 Team
Keywords: Jetson Mamba SSM, YOLOv10, TensorRT, ONNX, NVIDIA Jetson, ARM64, Deep Learning, Object Detection, State Space Model, Edge AI