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

Function call_evd

numpy/linalg/umath_linalg.cpp:1272–1282  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1270} ;
1271
1272static inline fortran_int
1273call_evd(EIGH_PARAMS_t<npy_float> *params)
1274{
1275 fortran_int rv;
1276 LAPACK(ssyevd)(&params->JOBZ, &params->UPLO, &params->N,
1277 params->A, &params->LDA, params->W,
1278 params->WORK, &params->LWORK,
1279 params->IWORK, &params->LIWORK,
1280 &rv);
1281 return rv;
1282}
1283static inline fortran_int
1284call_evd(EIGH_PARAMS_t<npy_double> *params)
1285{

Callers 2

init_evdFunction · 0.85
eigh_wrapperFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected