//! High-performance RWKV7 inference kernel.
//!
//! This module provides a portable SIMD RWKV7 implementation using `wide` so
//! rustc/LLVM can pick the best ISA per target (x86_64, aarch64, wasm32 SIMD,
//! or scalar fallback on non-SIMD CPUs).
//!
//! # Architecture
//!
//! - Matrix/vector operations are vectorized via `wide` (`f32x8`)
//! - State updates are optimized for RWKV7 head dimension N=64
//! - Memory layout is cache-friendly and alignment-aware
//! - No external BLAS dependencies
pub use ScratchBuffers;
pub use ;
pub use ;
pub use ;
pub use Weights;