singe_cusolver/dense/mod.rs
1//! Dense cuSOLVER operation wrappers.
2//!
3//! Public APIs should prefer typed operation families such as [`Potrf`],
4//! [`Getrf`], and [`Geqrf`]. Upstream `S`/`D`/`C`/`Z` entry-point wrappers are
5//! implementation details unless an operation has not yet been lifted into a
6//! typed family.
7
8pub(crate) mod validation;
9
10// TODO: remove?
11pub mod legacy;
12
13mod generic;
14pub use generic::*;
15
16mod scalar;
17pub use scalar::*;
18
19mod operations;
20pub use operations::*;