cupyx.scipy.sparse.linalg.lsqr#

cupyx.scipy.sparse.linalg.lsqr(A, b)[source]#

Solves linear system with QR decomposition.

Find the solution to a large, sparse, linear system of equations. The function solves Ax = b. Given two-dimensional matrix A is decomposed into Q * R.

Parameters
Returns

Its length must be ten. It has same type elements as SciPy. Only the first element, the solution vector x, is available and other elements are expressed as None because the implementation of cuSOLVER is different from the one of SciPy. You can easily calculate the fourth element by norm(b - Ax) and the ninth element by norm(x).

Return type

tuple