| Crates.io | kizzasi-core |
| lib.rs | kizzasi-core |
| version | 0.1.0 |
| created_at | 2026-01-19 00:09:30.446997+00 |
| updated_at | 2026-01-19 00:09:30.446997+00 |
| description | Core SSM (State Space Model) engine for Kizzasi AGSP |
| homepage | https://github.com/cool-japan/kizzasi |
| repository | https://github.com/cool-japan/kizzasi |
| max_upload_size | |
| id | 2053355 |
| size | 841,679 |
Core State Space Model (SSM) engine for Kizzasi AGSP.
High-performance SSM implementation with O(1) per-step inference, SIMD optimizations, and parallel processing. Provides the foundational building blocks for autoregressive signal prediction.
use kizzasi_core::{SelectiveSSM, KizzasiConfig};
// Create SSM with 64-dimensional hidden state
let config = KizzasiConfig::builder()
.input_dim(32)
.hidden_dim(64)
.output_dim(32)
.num_layers(4)
.build()?;
let mut ssm = SelectiveSSM::new(config)?;
// Single-step prediction (O(1) complexity)
let input = Array1::zeros(32);
let output = ssm.step(&input)?;
Licensed under either of Apache License, Version 2.0 or MIT license at your option.