| Crates.io | feagi-npu-burst-engine |
| lib.rs | feagi-npu-burst-engine |
| version | 0.0.1-beta.4 |
| created_at | 2025-12-23 22:53:51.95924+00 |
| updated_at | 2026-01-25 21:45:44.915453+00 |
| description | High-performance burst engine for FEAGI neural processing |
| homepage | https://feagi.org |
| repository | https://github.com/feagi/feagi-core |
| max_upload_size | |
| id | 2002502 |
| size | 1,412,941 |
High-performance neural processing unit (NPU) for FEAGI burst cycle execution.
The burst engine processes neural activity in discrete time steps:
[dependencies]
feagi-burst-engine = "2.0"
# With GPU support
feagi-burst-engine = { version = "2.0", features = ["gpu"] }
# With CUDA support (NVIDIA only)
feagi-burst-engine = { version = "2.0", features = ["cuda"] }
use feagi_burst_engine::RustNPU;
let mut npu = RustNPU::new(100_000, 1_000_000, 20)?;
npu.load_connectome("brain.json")?;
npu.process_burst()?;
gpu - Cross-platform GPU acceleration via WGPUcuda - NVIDIA CUDA accelerationall-gpu - Enable all GPU backendsPart of the FEAGI ecosystem.