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

Function destroy_cfft_plan

numpy/fft/_pocketfft.c:2110–2117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2108 }
2109
2110static void destroy_cfft_plan (cfft_plan plan)
2111 {
2112 if (plan->blueplan)
2113 destroy_fftblue_plan(plan->blueplan);
2114 if (plan->packplan)
2115 destroy_cfftp_plan(plan->packplan);
2116 DEALLOC(plan);
2117 }
2118
2119WARN_UNUSED_RESULT static int cfft_backward(cfft_plan plan, double c[], double fct)
2120 {

Callers 1

execute_complexFunction · 0.85

Calls 2

destroy_fftblue_planFunction · 0.85
destroy_cfftp_planFunction · 0.85

Tested by

no test coverage detected