zilla-muf 0.1.1

Shared structured-matrix and numerical primitives for sparse attention and state space models (SSMs).
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "zilla-muf"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared structured-matrix and numerical primitives for sparse attention and state space models (SSMs)."
readme = "README.md"
keywords = [
    "ssm",
    "attention",
    "mamba",
    "scan",
    "numerics",
]
categories = [
    "algorithms",
    "mathematics",
]
license = "BSD-3-Clause"
repository = "https://github.com/dvbnrg/zilla-muf"

[package.metadata.docs.rs]
all-features = true

[features]
fft = ["rustfft"]
parallel = ["rayon"]

[lib]
name = "zilla_muf"
path = "src/lib.rs"

[[bench]]
name = "scan_bench"
path = "benches/scan_bench.rs"
harness = false

[[bench]]
name = "structured_bench"
path = "benches/structured_bench.rs"
harness = false

[dependencies.num-complex]
version = "0.4"

[dependencies.num-traits]
version = "0.2"

[dependencies.rayon]
version = "1"
optional = true

[dependencies.rustfft]
version = "6"
optional = true

[dev-dependencies.criterion]
version = "0.5"