MCPcopy Create free account
hub / github.com/numpy/numpy / call_geqrf

Function call_geqrf

numpy/linalg/umath_linalg.cpp:3055–3065  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3053}
3054
3055static inline fortran_int
3056call_geqrf(GEQRF_PARAMS_t<double> *params)
3057{
3058 fortran_int rv;
3059 LAPACK(dgeqrf)(&params->M, &params->N,
3060 params->A, &params->LDA,
3061 params->TAU,
3062 params->WORK, &params->LWORK,
3063 &rv);
3064 return rv;
3065}
3066static inline fortran_int
3067call_geqrf(GEQRF_PARAMS_t<f2c_doublecomplex> *params)
3068{

Callers 2

init_geqrfFunction · 0.85
qr_r_rawFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected