warp.tile_cholesky_solve_inplace#
- warp.tile_cholesky_solve_inplace( ) None#
Kernel
Solve for
xinAx = yby overwritingywithx.Note: This inplace variant does not support automatic differentiation (adjoint computation), but avoids allocating shared memory for the output
xby reusingy’s memory.- Supported datatypes are:
float32
float64
- Parameters:
L – A square, lower triangular, matrix, such that
LL^T = A.y – A 1D or 2D tile of length
Mthat gets overwritten byxwhereLL^T x = y.