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

Function release_evd

numpy/linalg/umath_linalg.cpp:1494–1501  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1492
1493template<typename typ>
1494static inline void
1495release_evd(EIGH_PARAMS_t<typ> *params)
1496{
1497 /* allocated memory in A and WORK */
1498 free(params->A);
1499 free(params->WORK);
1500 memset(params, 0, sizeof(*params));
1501}
1502
1503
1504template<typename typ>

Callers 1

eigh_wrapperFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected