├── .gitignore ├── Makefile ├── README.md ├── benchmark ├── article.py ├── benchmark.h ├── fftw.cpp ├── graphs.py ├── kissfft.cpp ├── main.cpp └── others │ └── contents.txt ├── common ├── console-colours.h ├── csv.h ├── simple-args.h ├── sqlite-cpp.h └── test │ ├── example-test.cpp │ ├── main.cpp │ └── tests.h ├── comparison.svg ├── signalsmith-fft.h └── tests ├── 00-fft.cpp ├── 01-real.cpp └── tests-common.h /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | benchmark/others 3 | fft-v4/ 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/article.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/benchmark/article.py -------------------------------------------------------------------------------- /benchmark/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/benchmark/benchmark.h -------------------------------------------------------------------------------- /benchmark/fftw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/benchmark/fftw.cpp -------------------------------------------------------------------------------- /benchmark/graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/benchmark/graphs.py -------------------------------------------------------------------------------- /benchmark/kissfft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/benchmark/kissfft.cpp -------------------------------------------------------------------------------- /benchmark/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/benchmark/main.cpp -------------------------------------------------------------------------------- /benchmark/others/contents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/benchmark/others/contents.txt -------------------------------------------------------------------------------- /common/console-colours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/common/console-colours.h -------------------------------------------------------------------------------- /common/csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/common/csv.h -------------------------------------------------------------------------------- /common/simple-args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/common/simple-args.h -------------------------------------------------------------------------------- /common/sqlite-cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/common/sqlite-cpp.h -------------------------------------------------------------------------------- /common/test/example-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/common/test/example-test.cpp -------------------------------------------------------------------------------- /common/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/common/test/main.cpp -------------------------------------------------------------------------------- /common/test/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/common/test/tests.h -------------------------------------------------------------------------------- /comparison.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/comparison.svg -------------------------------------------------------------------------------- /signalsmith-fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/signalsmith-fft.h -------------------------------------------------------------------------------- /tests/00-fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/tests/00-fft.cpp -------------------------------------------------------------------------------- /tests/01-real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/tests/01-real.cpp -------------------------------------------------------------------------------- /tests/tests-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signalsmith-Audio/fft/HEAD/tests/tests-common.h --------------------------------------------------------------------------------