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

Function execute

numpy/fft/_pocketfft.c:2335–2348  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2333static const char execute__doc__[] = "";
2334
2335static PyObject *
2336execute(PyObject *NPY_UNUSED(self), PyObject *args)
2337{
2338 PyObject *a1;
2339 int is_real, is_forward;
2340 double fct;
2341
2342 if(!PyArg_ParseTuple(args, "Oiid:execute", &a1, &is_real, &is_forward, &fct)) {
2343 return NULL;
2344 }
2345
2346 return is_real ? execute_real(a1, is_forward, fct)
2347 : execute_complex(a1, is_forward, fct);
2348}
2349
2350/* List of methods defined in the module */
2351

Callers

nothing calls this directly

Calls 2

execute_realFunction · 0.85
execute_complexFunction · 0.85

Tested by

no test coverage detected