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

Function call_geev

numpy/linalg/umath_linalg.cpp:2052–2064  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2050}
2051
2052static inline fortran_int
2053call_geev(GEEV_PARAMS_t<float>* params)
2054{
2055 fortran_int rv;
2056 LAPACK(sgeev)(&params->JOBVL, &params->JOBVR,
2057 &params->N, params->A, &params->LDA,
2058 params->WR, params->WI,
2059 params->VLR, &params->LDVL,
2060 params->VRR, &params->LDVR,
2061 params->WORK, &params->LWORK,
2062 &rv);
2063 return rv;
2064}
2065
2066static inline fortran_int
2067call_geev(GEEV_PARAMS_t<double>* params)

Callers 2

init_geevFunction · 0.85
eig_wrapperFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected