MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / Rfft2dImpl

Function Rfft2dImpl

tensorflow/lite/kernels/rfft2d.cc:268–280  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

266}
267
268void Rfft2dImpl(int fft_height, int fft_width, double** fft_input_output,
269 int* fft_integer_working_area_data,
270 double* fft_double_working_area_data) {
271 gemmlowp::ScopedProfilingLabel label("Rfft2dImpl");
272
273 // Working data areas for the FFT routines.
274 double* fft_dynamic_working_area = nullptr;
275 const int kForwardFft = 1;
276 rdft2d(fft_height, fft_width, kForwardFft, fft_input_output,
277 fft_dynamic_working_area, fft_integer_working_area_data,
278 fft_double_working_area_data);
279 Rfft2dReorder(fft_height, fft_width, fft_input_output);
280}
281
282void PrepareInputBuffer(const float* input_data, int input_height,
283 int input_width, int fft_height, int fft_width,

Callers 1

Rfft2dHelperFunction · 0.85

Calls 1

Rfft2dReorderFunction · 0.85

Tested by

no test coverage detected