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

Function rfft_backward

numpy/fft/_pocketfft.c:2179–2185  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2177 }
2178
2179WARN_UNUSED_RESULT static int rfft_backward(rfft_plan plan, double c[], double fct)
2180 {
2181 if (plan->packplan)
2182 return rfftp_backward(plan->packplan,c,fct);
2183 else // if (plan->blueplan)
2184 return rfftblue_backward(plan->blueplan,c,fct);
2185 }
2186
2187WARN_UNUSED_RESULT static int rfft_forward(rfft_plan plan, double c[], double fct)
2188 {

Callers 1

execute_real_backwardFunction · 0.85

Calls 2

rfftp_backwardFunction · 0.85
rfftblue_backwardFunction · 0.85

Tested by

no test coverage detected