Solves the linear system a %*% x = b for x, where a is a symmetric
positive-definite matrix. Uses Cholesky decomposition internally.
Supports batched inputs: a and b must have the same batch dimensions
(all dimensions before the last two).
Value
tensorish
The solution x such that a %*% x = b.
Shapes
a:(..., n, n)b:(..., n, k)output: same shape as
b
where ... are zero or more batch dimensions that must match between
a and b.