| 79 | } |
| 80 | |
| 81 | int choleskyInPlace(array &in, const bool is_upper) { |
| 82 | int info = 0; |
| 83 | AF_THROW(af_cholesky_inplace(&info, in.get(), is_upper)); |
| 84 | return info; |
| 85 | } |
| 86 | |
| 87 | array solve(const array &a, const array &b, const matProp options) { |
| 88 | af_array out; |
no test coverage detected