warp.tile_cholesky_solve#
- warp.tile_cholesky_solve( ) Tile[Float, tuple[int]]#
Kernel
Solve for
xinAx = ygiven the Cholesky factor ofA.When
fill_mode="lower"(default),Lis lower-triangular such thatLL^T = A. Whenfill_mode="upper",Lis upper-triangularUsuch thatU^T U = A.The
fill_modeparameter must be a compile-time constant.Note that computing the adjoint is not yet supported.
- Supported datatypes are:
float32
float64
- Parameters:
L – A square triangular Cholesky factor of
A.y – A 1D or 2D tile of length
M.fill_mode –
"lower"(default) or"upper". Must be a compile-time constant.
- Returns:
A tile of the same shape as
ysuch thatAx = y.