Skip to main content

zilla_muf/
lib.rs

1//! zilla-muf: shared structured-matrix and numerical primitives
2//! for sparse attention and state space models.
3
4pub mod scan;
5pub mod stable_ops;
6pub mod structured;
7pub mod discretize;
8pub mod complex_ops;
9#[cfg(feature = "fft")]
10pub mod fft_conv;