| 71 | } |
| 72 | |
| 73 | int cholesky(array &out, const array &in, const bool is_upper) { |
| 74 | int info = 0; |
| 75 | af_array res; |
| 76 | AF_THROW(af_cholesky(&res, &info, in.get(), is_upper)); |
| 77 | out = array(res); |
| 78 | return info; |
| 79 | } |
| 80 | |
| 81 | int choleskyInPlace(array &in, const bool is_upper) { |
| 82 | int info = 0; |
no test coverage detected