MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / choleskyInPlace

Function choleskyInPlace

src/api/cpp/lapack.cpp:81–85  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79}
80
81int 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
87array solve(const array &a, const array &b, const matProp options) {
88 af_array out;

Callers 3

TESTFunction · 0.85
choleskyTesterFunction · 0.85
mainFunction · 0.85

Calls 2

af_cholesky_inplaceFunction · 0.50
getMethod · 0.45

Tested by

no test coverage detected