Home
last modified time | relevance | path

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

/Zephyr-latest/samples/boards/nxp/adsp/number_crunching/include/
Dinput.h114 #define FFT_LENGTH 512 macro
116 int32_t fft_in[FFT_LENGTH * 2];
117 int32_t fft_out[FFT_LENGTH * 2];
/Zephyr-latest/samples/boards/nxp/adsp/number_crunching/src/
Dmath_ops.c89 int32_t fft_in[FFT_LENGTH]; in test_fft_op()
92 for (i = 0; i < FFT_LENGTH; i++) in test_fft_op()
93 fft_in[i] = FFT_LENGTH * (1 + i % 2); /* only real part */ in test_fft_op()
99 fft_real32(fft_in, fft_out, FFT_LENGTH); in test_fft_op()