[dependencies.bytemuck]
features = ["derive"]
version = "1.21"
[dependencies.num-traits]
version = "0.2"
[dependencies.oxiblas-core]
version = "0.1.2"
[dependencies.oxiblas-matrix]
version = "0.1.2"
[dependencies.rayon]
optional = true
version = "1.10"
[dev-dependencies.rand]
version = "0.9"
[features]
default = []
parallel = ["dep:rayon", "oxiblas-core/parallel"]
[lib]
name = "oxiblas_sparse"
path = "src/lib.rs"
[lints.clippy]
all = "warn"
[lints.rust]
unsafe_op_in_unsafe_fn = "allow"
[package]
authors = ["COOLJAPAN OU <contact@cooljapan.tech>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["mathematics", "science", "algorithms"]
description = "Sparse matrix support for OxiBLAS"
edition = "2024"
keywords = ["sparse", "matrix", "csr", "csc", "linear-algebra"]
license = "MIT OR Apache-2.0"
name = "oxiblas-sparse"
readme = "README.md"
repository = "https://github.com/cool-japan/oxiblas"
resolver = "2"
rust-version = "1.85"
version = "0.1.2"
[[test]]
name = "convergence_tests"
path = "tests/convergence_tests.rs"
[[test]]
name = "memory_usage_tests"
path = "tests/memory_usage_tests.rs"
[[test]]
name = "precond_tests"
path = "tests/precond_tests.rs"
[[test]]
name = "suitesparse_matrices"
path = "tests/suitesparse_matrices.rs"