MCPcopy Create free account
hub / github.com/davisking/dlib / fftr

Function fftr

dlib/fft/fft.cpp:22–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20
21 template<typename T>
22 void fftr(const fft_size& dims, const T* in, std::complex<T>* out)
23 {
24#ifdef DLIB_USE_MKL_FFT
25 mkl_fftr(dims, in, out);
26#else
27 kiss_fftr(dims, in, out);
28#endif
29 }
30
31 template<typename T>
32 void ifftr(const fft_size& dims, const std::complex<T>* in, T* out)

Callers 4

test_random_fftsFunction · 0.50
test_linearity_realFunction · 0.50
test_fftr_conjugacy_1DFunction · 0.50

Calls 2

mkl_fftrFunction · 0.85
kiss_fftrFunction · 0.85

Tested by 4

test_random_fftsFunction · 0.40
test_linearity_realFunction · 0.40
test_fftr_conjugacy_1DFunction · 0.40