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

Function call_gesdd

numpy/linalg/umath_linalg.cpp:2613–2626  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2611}
2612
2613static inline fortran_int
2614call_gesdd(GESDD_PARAMS_t<fortran_real> *params)
2615{
2616 fortran_int rv;
2617 LAPACK(sgesdd)(&params->JOBZ, &params->M, &params->N,
2618 params->A, &params->LDA,
2619 params->S,
2620 params->U, &params->LDU,
2621 params->VT, &params->LDVT,
2622 params->WORK, &params->LWORK,
2623 (fortran_int*)params->IWORK,
2624 &rv);
2625 return rv;
2626}
2627static inline fortran_int
2628call_gesdd(GESDD_PARAMS_t<fortran_doublereal> *params)
2629{

Callers 2

init_gesddFunction · 0.85
svd_wrapperFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected