Home
last modified time | relevance | path

Searched refs:fft_width (Results 1 – 1 of 1) sorted by relevance

/external/tensorflow/tensorflow/lite/kernels/
Drfft2d.cc119 int fft_height, fft_width; in ResizeOutputandTemporaryTensors() local
121 fft_width = fft_length_data[1]; in ResizeOutputandTemporaryTensors()
122 int fft_working_length = std::max(fft_height, fft_width / 2); in ResizeOutputandTemporaryTensors()
152 half_fft_working_length + fft_width / 4; in ResizeOutputandTemporaryTensors()
247 void Rfft2dReorder(int fft_height, int fft_width, double** fft_input_output) { in Rfft2dReorder() argument
266 fft_input_output[i][fft_width] = img; in Rfft2dReorder()
267 fft_input_output[i][fft_width + 1] = real; in Rfft2dReorder()
268 fft_input_output[fft_height - i][fft_width] = img; in Rfft2dReorder()
269 fft_input_output[fft_height - i][fft_width + 1] = -real; in Rfft2dReorder()
275 fft_input_output[0][fft_width + 1] = 0; in Rfft2dReorder()
[all …]