Sparse linear algebra (cupyx.scipy.sparse.linalg
)#
Abstract linear operators#
|
Common interface for performing matrix vector products |
Return A as a LinearOperator. |
Matrix norms#
|
Norm of a cupy.scipy.spmatrix |
Solving linear problems#
Direct methods for linear equation systems:
|
Solves a sparse linear system |
|
Solves a sparse triangular system |
|
Return a function for solving a sparse linear system, with A pre-factorized. |
Iterative methods for linear equation systems:
|
Uses Conjugate Gradient iteration to solve |
|
Uses Generalized Minimal RESidual iteration to solve |
|
Use Conjugate Gradient Squared iteration to solve |
|
Uses MINimum RESidual iteration to solve |
Iterative methods for least-squares problems:
|
Solves linear system with QR decomposition. |
|
Iterative solver for least-squares problems. |
Matrix factorizations#
Eigenvalue problems:
|
Find |
|
Locally Optimal Block Preconditioned Conjugate Gradient Method (LOBPCG) |
Singular values problems:
|
Finds the largest |
Complete or incomplete LU factorizations:
|
Computes the LU decomposition of a sparse square matrix. |
|
Computes the incomplete LU decomposition of a sparse square matrix. |
|