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

Function call_gesv

numpy/linalg/umath_linalg.cpp:1635–1645  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1633};
1634
1635static inline fortran_int
1636call_gesv(GESV_PARAMS_t<fortran_real> *params)
1637{
1638 fortran_int rv;
1639 LAPACK(sgesv)(&params->N, &params->NRHS,
1640 params->A, &params->LDA,
1641 params->IPIV,
1642 params->B, &params->LDB,
1643 &rv);
1644 return rv;
1645}
1646
1647static inline fortran_int
1648call_gesv(GESV_PARAMS_t<fortran_doublereal> *params)

Callers 3

solveFunction · 0.85
solve1Function · 0.85
invFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected