torch.sparse.spsolve — PyTorch 2.7 documentation (original) (raw)

torch.sparse.spsolve(input, other, *, left=True) → Tensor

Computes the solution of a square system of linear equations with a unique solution. Its purpose is similar to torch.linalg.solve(), except that the system is defined by a sparse CSR matrix with layoutsparse_csr.

Parameters