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

Function release_gesdd

numpy/linalg/umath_linalg.cpp:2879–2886  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2877
2878template<typename typ>
2879static inline void
2880release_gesdd(GESDD_PARAMS_t<typ>* params)
2881{
2882 /* A and WORK contain allocated blocks */
2883 free(params->A);
2884 free(params->WORK);
2885 memset(params, 0, sizeof(*params));
2886}
2887
2888template<typename typ>
2889static inline void

Callers 1

svd_wrapperFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected