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

Function cholesky

src/api/cpp/lapack.cpp:73–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71}
72
73int 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
81int choleskyInPlace(array &in, const bool is_upper) {
82 int info = 0;

Callers 3

TESTFunction · 0.50
choleskyTesterFunction · 0.50
mainFunction · 0.50

Calls 3

af_choleskyFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected