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

Function rfft_forward

numpy/fft/_pocketfft.c:2187–2193  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2185 }
2186
2187WARN_UNUSED_RESULT static int rfft_forward(rfft_plan plan, double c[], double fct)
2188 {
2189 if (plan->packplan)
2190 return rfftp_forward(plan->packplan,c,fct);
2191 else // if (plan->blueplan)
2192 return rfftblue_forward(plan->blueplan,c,fct);
2193 }
2194
2195static PyObject *
2196execute_complex(PyObject *a1, int is_forward, double fct)

Callers 1

execute_real_forwardFunction · 0.85

Calls 2

rfftp_forwardFunction · 0.85
rfftblue_forwardFunction · 0.85

Tested by

no test coverage detected