//! Linear algebra CUDA kernel launchers
//!
//! Split into categorical submodules for maintainability:
//! - `basic` - trace, diag, diagflat, identity, copy, transpose
//! - `solvers` - forward/backward substitution, determinant, permutation
//! - `decompositions` - LU, Cholesky, QR
//! - `svd` - SVD Jacobi algorithm
//! - `eigen` - eigendecomposition (symmetric, general, Schur)
//! - `advanced` - rsf2csf, QZ decomposition
//! - `matrix_funcs` - matrix functions (exp, log, sqrt) on quasi-triangular matrices
// Re-export all launcher functions
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;