lenskit.math.solve#
Efficient solver routines.
Functions
|
Solve the system |
- lenskit.math.solve.solve_cholesky(A, y)#
Solve the system
for with Cholesky decomposition.This wraps
torch.linalg.cholesky_ex()
andtorch.cholesky_solve()
in an easier-to-use interface with error checking.