Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
67
void 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
73
int cholesky(array &out, const array &in, const bool is_upper) {
74
int info = 0;
Callers
3
TEST
Function · 0.85
qrTester
Function · 0.85
main
Function · 0.85
Calls
3
af_qr_inplace
Function · 0.50
array
Class · 0.50
get
Method · 0.45
Tested by
no test coverage detected