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

Function qrInPlace

src/api/cpp/lapack.cpp:67–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65}
66
67void qrInPlace(array &tau, array &in) {
68 af_array t = 0;
69 AF_THROW(af_qr_inplace(&t, in.get()));
70 tau = array(t);
71}
72
73int cholesky(array &out, const array &in, const bool is_upper) {
74 int info = 0;

Callers 3

TESTFunction · 0.85
qrTesterFunction · 0.85
mainFunction · 0.85

Calls 3

af_qr_inplaceFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected