//! Sparse matrix storage formats.
//!
//! This module provides GPU-backed sparse matrix types in multiple standard
//! formats:
//!
//! - [`CsrMatrix`] -- Compressed Sparse Row
//! - [`CscMatrix`] -- Compressed Sparse Column
//! - [`CooMatrix`] -- Coordinate (triplet) format
//! - [`BsrMatrix`] -- Block Sparse Row
//! - [`EllMatrix`] -- ELLPACK format
//! - [`HybMatrix`] -- HYB (Hybrid ELL+COO) format
//!
//! Format conversion routines are in the [`convert`] sub-module.
pub use BsrMatrix;
pub use CooMatrix;
pub use CscMatrix;
pub use CsrMatrix;
pub use Csr5Matrix;
pub use EllMatrix;
pub use ;
pub use ;