cpu_fft.h 156 B

12345678910
  1. #ifndef CPU_FFT_H
  2. #define CPU_FFT_H
  3. #include <fftw3.h>
  4. #include "utilities.h"
  5. void loop_data_fftw (OutputType outputType, TimeEntry *time_entry);
  6. #endif