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

Function luInPlace

src/api/cpp/lapack.cpp:46–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44}
45
46void luInPlace(array &pivot, array &in, const bool is_lapack_piv) {
47 af_array p = 0;
48 AF_THROW(af_lu_inplace(&p, in.get(), is_lapack_piv));
49 pivot = array(p);
50}
51
52void qr(array &out, array &tau, const array &in) {
53 out = in.copy();

Callers 3

TESTFunction · 0.85
luTesterFunction · 0.85
mainFunction · 0.85

Calls 3

af_lu_inplaceFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected