Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/kernels/
Drfft2d.cc247 void Rfft2dReorder(int fft_height, int fft_width, double** fft_input_output) { in Rfft2dReorder() argument
264 real = fft_input_output[i][0]; in Rfft2dReorder()
265 img = fft_input_output[i][1]; in Rfft2dReorder()
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()
270 fft_input_output[i][0] = fft_input_output[fft_height - i][0]; in Rfft2dReorder()
271 fft_input_output[i][1] = -fft_input_output[fft_height - i][1]; in Rfft2dReorder()
274 double temp = fft_input_output[0][1]; in Rfft2dReorder()
[all …]