gitextract_8dx02k3e/ ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── benchmark-tests/ │ ├── benchmark_tests_fftw3.cpp │ ├── benchmark_tests_fftw3.h │ ├── benchmark_tests_main.cpp │ └── results_Linux_Mint_14_x86_64_Intel_Core_i5_10_Gb_RAM/ │ ├── benchmark_test_multiple_transforms_GCC_release.txt │ ├── benchmark_test_multiple_transforms_ICC_release.txt │ ├── benchmark_test_multiple_transforms_clang_release.txt │ ├── benchmark_test_single_transform_GCC_release.txt │ ├── benchmark_test_single_transform_ICC_release.txt │ └── benchmark_test_single_transform_clang_release.txt ├── include/ │ └── simple_fft/ │ ├── check_fft.hpp │ ├── copy_array.hpp │ ├── error_handling.hpp │ ├── fft.h │ ├── fft.hpp │ ├── fft_impl.hpp │ └── fft_settings.h └── unit-tests/ ├── test_fft.cpp ├── test_fft.h ├── test_fft.hpp ├── test_with_armadillo_matrix_and_row.cpp ├── test_with_blitz.cpp ├── test_with_boost_multiarray.cpp ├── test_with_boost_ublas_vector_matrix.cpp ├── test_with_eigen_vector_matrix.cpp ├── test_with_marray.cpp ├── test_with_native_cpp_pointer_based_arrays.cpp ├── test_with_std_vectors.cpp ├── test_with_stlsoft.cpp └── unit_tests_main.cpp