├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── CI └── deps │ ├── macos-deps-2022-08-02-arm64.tar.xz │ └── macos-deps-2022-08-02-x86_64.tar.xz ├── CMakeLists.txt ├── LICENSE ├── README.md ├── THANKS ├── changelog.md ├── cmake ├── package_common.cmake ├── package_deb.cmake └── package_macos.cmake ├── data ├── gradient.effect └── locale │ ├── en-US.ini │ ├── it-IT.ini │ ├── zh-CN.ini │ └── zh-TW.ini ├── deps └── fftw-3.3.10 │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── CONVENTIONS │ ├── COPYING │ ├── COPYRIGHT │ ├── ChangeLog │ ├── FFTW3Config.cmake.in │ ├── FFTW3ConfigVersion.cmake.in │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── README-perfcnt.md │ ├── TODO │ ├── aclocal.m4 │ ├── api │ ├── Makefile.am │ ├── Makefile.in │ ├── api.h │ ├── apiplan.c │ ├── configure.c │ ├── execute-dft-c2r.c │ ├── execute-dft-r2c.c │ ├── execute-dft.c │ ├── execute-r2r.c │ ├── execute-split-dft-c2r.c │ ├── execute-split-dft-r2c.c │ ├── execute-split-dft.c │ ├── execute.c │ ├── export-wisdom-to-file.c │ ├── export-wisdom-to-string.c │ ├── export-wisdom.c │ ├── f03api.sh │ ├── f77api.c │ ├── f77funcs.h │ ├── fftw3.f │ ├── fftw3.f03.in │ ├── fftw3.h │ ├── fftw3l.f03 │ ├── fftw3q.f03 │ ├── flops.c │ ├── forget-wisdom.c │ ├── genf03.pl │ ├── guru.h │ ├── guru64.h │ ├── import-system-wisdom.c │ ├── import-wisdom-from-file.c │ ├── import-wisdom-from-string.c │ ├── import-wisdom.c │ ├── malloc.c │ ├── map-r2r-kind.c │ ├── mapflags.c │ ├── mkprinter-file.c │ ├── mkprinter-str.c │ ├── mktensor-iodims.c │ ├── mktensor-iodims.h │ ├── mktensor-iodims64.c │ ├── mktensor-rowmajor.c │ ├── plan-dft-1d.c │ ├── plan-dft-2d.c │ ├── plan-dft-3d.c │ ├── plan-dft-c2r-1d.c │ ├── plan-dft-c2r-2d.c │ ├── plan-dft-c2r-3d.c │ ├── plan-dft-c2r.c │ ├── plan-dft-r2c-1d.c │ ├── plan-dft-r2c-2d.c │ ├── plan-dft-r2c-3d.c │ ├── plan-dft-r2c.c │ ├── plan-dft.c │ ├── plan-guru-dft-c2r.c │ ├── plan-guru-dft-c2r.h │ ├── plan-guru-dft-r2c.c │ ├── plan-guru-dft-r2c.h │ ├── plan-guru-dft.c │ ├── plan-guru-dft.h │ ├── plan-guru-r2r.c │ ├── plan-guru-r2r.h │ ├── plan-guru-split-dft-c2r.c │ ├── plan-guru-split-dft-c2r.h │ ├── plan-guru-split-dft-r2c.c │ ├── plan-guru-split-dft-r2c.h │ ├── plan-guru-split-dft.c │ ├── plan-guru-split-dft.h │ ├── plan-guru64-dft-c2r.c │ ├── plan-guru64-dft-r2c.c │ ├── plan-guru64-dft.c │ ├── plan-guru64-r2r.c │ ├── plan-guru64-split-dft-c2r.c │ ├── plan-guru64-split-dft-r2c.c │ ├── plan-guru64-split-dft.c │ ├── plan-many-dft-c2r.c │ ├── plan-many-dft-r2c.c │ ├── plan-many-dft.c │ ├── plan-many-r2r.c │ ├── plan-r2r-1d.c │ ├── plan-r2r-2d.c │ ├── plan-r2r-3d.c │ ├── plan-r2r.c │ ├── print-plan.c │ ├── rdft2-pad.c │ ├── the-planner.c │ ├── version.c │ └── x77.h │ ├── bootstrap.sh │ ├── cmake.config.h.in │ ├── compile │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── dft │ ├── Makefile.am │ ├── Makefile.in │ ├── bluestein.c │ ├── buffered.c │ ├── codelet-dft.h │ ├── conf.c │ ├── ct.c │ ├── ct.h │ ├── dft.h │ ├── dftw-direct.c │ ├── dftw-directsq.c │ ├── dftw-generic.c │ ├── dftw-genericbuf.c │ ├── direct.c │ ├── generic.c │ ├── indirect-transpose.c │ ├── indirect.c │ ├── kdft-dif.c │ ├── kdft-difsq.c │ ├── kdft-dit.c │ ├── kdft.c │ ├── nop.c │ ├── plan.c │ ├── problem.c │ ├── rader.c │ ├── rank-geq2.c │ ├── scalar │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── codelets │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── n1_10.c │ │ │ ├── n1_11.c │ │ │ ├── n1_12.c │ │ │ ├── n1_13.c │ │ │ ├── n1_14.c │ │ │ ├── n1_15.c │ │ │ ├── n1_16.c │ │ │ ├── n1_2.c │ │ │ ├── n1_20.c │ │ │ ├── n1_25.c │ │ │ ├── n1_3.c │ │ │ ├── n1_32.c │ │ │ ├── n1_4.c │ │ │ ├── n1_5.c │ │ │ ├── n1_6.c │ │ │ ├── n1_64.c │ │ │ ├── n1_7.c │ │ │ ├── n1_8.c │ │ │ ├── n1_9.c │ │ │ ├── q1_2.c │ │ │ ├── q1_3.c │ │ │ ├── q1_4.c │ │ │ ├── q1_5.c │ │ │ ├── q1_6.c │ │ │ ├── q1_8.c │ │ │ ├── t1_10.c │ │ │ ├── t1_12.c │ │ │ ├── t1_15.c │ │ │ ├── t1_16.c │ │ │ ├── t1_2.c │ │ │ ├── t1_20.c │ │ │ ├── t1_25.c │ │ │ ├── t1_3.c │ │ │ ├── t1_32.c │ │ │ ├── t1_4.c │ │ │ ├── t1_5.c │ │ │ ├── t1_6.c │ │ │ ├── t1_64.c │ │ │ ├── t1_7.c │ │ │ ├── t1_8.c │ │ │ ├── t1_9.c │ │ │ ├── t2_10.c │ │ │ ├── t2_16.c │ │ │ ├── t2_20.c │ │ │ ├── t2_25.c │ │ │ ├── t2_32.c │ │ │ ├── t2_4.c │ │ │ ├── t2_5.c │ │ │ ├── t2_64.c │ │ │ └── t2_8.c │ │ ├── f.h │ │ ├── n.c │ │ ├── n.h │ │ ├── q.h │ │ ├── t.c │ │ └── t.h │ ├── simd │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── altivec │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── n1bv_10.c │ │ │ ├── n1bv_11.c │ │ │ ├── n1bv_12.c │ │ │ ├── n1bv_128.c │ │ │ ├── n1bv_13.c │ │ │ ├── n1bv_14.c │ │ │ ├── n1bv_15.c │ │ │ ├── n1bv_16.c │ │ │ ├── n1bv_2.c │ │ │ ├── n1bv_20.c │ │ │ ├── n1bv_25.c │ │ │ ├── n1bv_3.c │ │ │ ├── n1bv_32.c │ │ │ ├── n1bv_4.c │ │ │ ├── n1bv_5.c │ │ │ ├── n1bv_6.c │ │ │ ├── n1bv_64.c │ │ │ ├── n1bv_7.c │ │ │ ├── n1bv_8.c │ │ │ ├── n1bv_9.c │ │ │ ├── n1fv_10.c │ │ │ ├── n1fv_11.c │ │ │ ├── n1fv_12.c │ │ │ ├── n1fv_128.c │ │ │ ├── n1fv_13.c │ │ │ ├── n1fv_14.c │ │ │ ├── n1fv_15.c │ │ │ ├── n1fv_16.c │ │ │ ├── n1fv_2.c │ │ │ ├── n1fv_20.c │ │ │ ├── n1fv_25.c │ │ │ ├── n1fv_3.c │ │ │ ├── n1fv_32.c │ │ │ ├── n1fv_4.c │ │ │ ├── n1fv_5.c │ │ │ ├── n1fv_6.c │ │ │ ├── n1fv_64.c │ │ │ ├── n1fv_7.c │ │ │ ├── n1fv_8.c │ │ │ ├── n1fv_9.c │ │ │ ├── n2bv_10.c │ │ │ ├── n2bv_12.c │ │ │ ├── n2bv_14.c │ │ │ ├── n2bv_16.c │ │ │ ├── n2bv_2.c │ │ │ ├── n2bv_20.c │ │ │ ├── n2bv_32.c │ │ │ ├── n2bv_4.c │ │ │ ├── n2bv_6.c │ │ │ ├── n2bv_64.c │ │ │ ├── n2bv_8.c │ │ │ ├── n2fv_10.c │ │ │ ├── n2fv_12.c │ │ │ ├── n2fv_14.c │ │ │ ├── n2fv_16.c │ │ │ ├── n2fv_2.c │ │ │ ├── n2fv_20.c │ │ │ ├── n2fv_32.c │ │ │ ├── n2fv_4.c │ │ │ ├── n2fv_6.c │ │ │ ├── n2fv_64.c │ │ │ ├── n2fv_8.c │ │ │ ├── n2sv_16.c │ │ │ ├── n2sv_32.c │ │ │ ├── n2sv_4.c │ │ │ ├── n2sv_64.c │ │ │ ├── n2sv_8.c │ │ │ ├── q1bv_2.c │ │ │ ├── q1bv_4.c │ │ │ ├── q1bv_5.c │ │ │ ├── q1bv_8.c │ │ │ ├── q1fv_2.c │ │ │ ├── q1fv_4.c │ │ │ ├── q1fv_5.c │ │ │ ├── q1fv_8.c │ │ │ ├── t1buv_10.c │ │ │ ├── t1buv_2.c │ │ │ ├── t1buv_3.c │ │ │ ├── t1buv_4.c │ │ │ ├── t1buv_5.c │ │ │ ├── t1buv_6.c │ │ │ ├── t1buv_7.c │ │ │ ├── t1buv_8.c │ │ │ ├── t1buv_9.c │ │ │ ├── t1bv_10.c │ │ │ ├── t1bv_12.c │ │ │ ├── t1bv_15.c │ │ │ ├── t1bv_16.c │ │ │ ├── t1bv_2.c │ │ │ ├── t1bv_20.c │ │ │ ├── t1bv_25.c │ │ │ ├── t1bv_3.c │ │ │ ├── t1bv_32.c │ │ │ ├── t1bv_4.c │ │ │ ├── t1bv_5.c │ │ │ ├── t1bv_6.c │ │ │ ├── t1bv_64.c │ │ │ ├── t1bv_7.c │ │ │ ├── t1bv_8.c │ │ │ ├── t1bv_9.c │ │ │ ├── t1fuv_10.c │ │ │ ├── t1fuv_2.c │ │ │ ├── t1fuv_3.c │ │ │ ├── t1fuv_4.c │ │ │ ├── t1fuv_5.c │ │ │ ├── t1fuv_6.c │ │ │ ├── t1fuv_7.c │ │ │ ├── t1fuv_8.c │ │ │ ├── t1fuv_9.c │ │ │ ├── t1fv_10.c │ │ │ ├── t1fv_12.c │ │ │ ├── t1fv_15.c │ │ │ ├── t1fv_16.c │ │ │ ├── t1fv_2.c │ │ │ ├── t1fv_20.c │ │ │ ├── t1fv_25.c │ │ │ ├── t1fv_3.c │ │ │ ├── t1fv_32.c │ │ │ ├── t1fv_4.c │ │ │ ├── t1fv_5.c │ │ │ ├── t1fv_6.c │ │ │ ├── t1fv_64.c │ │ │ ├── t1fv_7.c │ │ │ ├── t1fv_8.c │ │ │ ├── t1fv_9.c │ │ │ ├── t1sv_16.c │ │ │ ├── t1sv_2.c │ │ │ ├── t1sv_32.c │ │ │ ├── t1sv_4.c │ │ │ ├── t1sv_8.c │ │ │ ├── t2bv_10.c │ │ │ ├── t2bv_16.c │ │ │ ├── t2bv_2.c │ │ │ ├── t2bv_20.c │ │ │ ├── t2bv_25.c │ │ │ ├── t2bv_32.c │ │ │ ├── t2bv_4.c │ │ │ ├── t2bv_5.c │ │ │ ├── t2bv_64.c │ │ │ ├── t2bv_8.c │ │ │ ├── t2fv_10.c │ │ │ ├── t2fv_16.c │ │ │ ├── t2fv_2.c │ │ │ ├── t2fv_20.c │ │ │ ├── t2fv_25.c │ │ │ ├── t2fv_32.c │ │ │ ├── t2fv_4.c │ │ │ ├── t2fv_5.c │ │ │ ├── t2fv_64.c │ │ │ ├── t2fv_8.c │ │ │ ├── t2sv_16.c │ │ │ ├── t2sv_32.c │ │ │ ├── t2sv_4.c │ │ │ ├── t2sv_8.c │ │ │ ├── t3bv_10.c │ │ │ ├── t3bv_16.c │ │ │ ├── t3bv_20.c │ │ │ ├── t3bv_25.c │ │ │ ├── t3bv_32.c │ │ │ ├── t3bv_4.c │ │ │ ├── t3bv_5.c │ │ │ ├── t3bv_8.c │ │ │ ├── t3fv_10.c │ │ │ ├── t3fv_16.c │ │ │ ├── t3fv_20.c │ │ │ ├── t3fv_25.c │ │ │ ├── t3fv_32.c │ │ │ ├── t3fv_4.c │ │ │ ├── t3fv_5.c │ │ │ └── t3fv_8.c │ │ ├── avx-128-fma │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── n1bv_10.c │ │ │ ├── n1bv_11.c │ │ │ ├── n1bv_12.c │ │ │ ├── n1bv_128.c │ │ │ ├── n1bv_13.c │ │ │ ├── n1bv_14.c │ │ │ ├── n1bv_15.c │ │ │ ├── n1bv_16.c │ │ │ ├── n1bv_2.c │ │ │ ├── n1bv_20.c │ │ │ ├── n1bv_25.c │ │ │ ├── n1bv_3.c │ │ │ ├── n1bv_32.c │ │ │ ├── n1bv_4.c │ │ │ ├── n1bv_5.c │ │ │ ├── n1bv_6.c │ │ │ ├── n1bv_64.c │ │ │ ├── n1bv_7.c │ │ │ ├── n1bv_8.c │ │ │ ├── n1bv_9.c │ │ │ ├── n1fv_10.c │ │ │ ├── n1fv_11.c │ │ │ ├── n1fv_12.c │ │ │ ├── n1fv_128.c │ │ │ ├── n1fv_13.c │ │ │ ├── n1fv_14.c │ │ │ ├── n1fv_15.c │ │ │ ├── n1fv_16.c │ │ │ ├── n1fv_2.c │ │ │ ├── n1fv_20.c │ │ │ ├── n1fv_25.c │ │ │ ├── n1fv_3.c │ │ │ ├── n1fv_32.c │ │ │ ├── n1fv_4.c │ │ │ ├── n1fv_5.c │ │ │ ├── n1fv_6.c │ │ │ ├── n1fv_64.c │ │ │ ├── n1fv_7.c │ │ │ ├── n1fv_8.c │ │ │ ├── n1fv_9.c │ │ │ ├── n2bv_10.c │ │ │ ├── n2bv_12.c │ │ │ ├── n2bv_14.c │ │ │ ├── n2bv_16.c │ │ │ ├── n2bv_2.c │ │ │ ├── n2bv_20.c │ │ │ ├── n2bv_32.c │ │ │ ├── n2bv_4.c │ │ │ ├── n2bv_6.c │ │ │ ├── n2bv_64.c │ │ │ ├── n2bv_8.c │ │ │ ├── n2fv_10.c │ │ │ ├── n2fv_12.c │ │ │ ├── n2fv_14.c │ │ │ ├── n2fv_16.c │ │ │ ├── n2fv_2.c │ │ │ ├── n2fv_20.c │ │ │ ├── n2fv_32.c │ │ │ ├── n2fv_4.c │ │ │ ├── n2fv_6.c │ │ │ ├── n2fv_64.c │ │ │ ├── n2fv_8.c │ │ │ ├── n2sv_16.c │ │ │ ├── n2sv_32.c │ │ │ ├── n2sv_4.c │ │ │ ├── n2sv_64.c │ │ │ ├── n2sv_8.c │ │ │ ├── q1bv_2.c │ │ │ ├── q1bv_4.c │ │ │ ├── q1bv_5.c │ │ │ ├── q1bv_8.c │ │ │ ├── q1fv_2.c │ │ │ ├── q1fv_4.c │ │ │ ├── q1fv_5.c │ │ │ ├── q1fv_8.c │ │ │ ├── t1buv_10.c │ │ │ ├── t1buv_2.c │ │ │ ├── t1buv_3.c │ │ │ ├── t1buv_4.c │ │ │ ├── t1buv_5.c │ │ │ ├── t1buv_6.c │ │ │ ├── t1buv_7.c │ │ │ ├── t1buv_8.c │ │ │ ├── t1buv_9.c │ │ │ ├── t1bv_10.c │ │ │ ├── t1bv_12.c │ │ │ ├── t1bv_15.c │ │ │ ├── t1bv_16.c │ │ │ ├── t1bv_2.c │ │ │ ├── t1bv_20.c │ │ │ ├── t1bv_25.c │ │ │ ├── t1bv_3.c │ │ │ ├── t1bv_32.c │ │ │ ├── t1bv_4.c │ │ │ ├── t1bv_5.c │ │ │ ├── t1bv_6.c │ │ │ ├── t1bv_64.c │ │ │ ├── t1bv_7.c │ │ │ ├── t1bv_8.c │ │ │ ├── t1bv_9.c │ │ │ ├── t1fuv_10.c │ │ │ ├── t1fuv_2.c │ │ │ ├── t1fuv_3.c │ │ │ ├── t1fuv_4.c │ │ │ ├── t1fuv_5.c │ │ │ ├── t1fuv_6.c │ │ │ ├── t1fuv_7.c │ │ │ ├── t1fuv_8.c │ │ │ ├── t1fuv_9.c │ │ │ ├── t1fv_10.c │ │ │ ├── t1fv_12.c │ │ │ ├── t1fv_15.c │ │ │ ├── t1fv_16.c │ │ │ ├── t1fv_2.c │ │ │ ├── t1fv_20.c │ │ │ ├── t1fv_25.c │ │ │ ├── t1fv_3.c │ │ │ ├── t1fv_32.c │ │ │ ├── t1fv_4.c │ │ │ ├── t1fv_5.c │ │ │ ├── t1fv_6.c │ │ │ ├── t1fv_64.c │ │ │ ├── t1fv_7.c │ │ │ ├── t1fv_8.c │ │ │ ├── t1fv_9.c │ │ │ ├── t1sv_16.c │ │ │ ├── t1sv_2.c │ │ │ ├── t1sv_32.c │ │ │ ├── t1sv_4.c │ │ │ ├── t1sv_8.c │ │ │ ├── t2bv_10.c │ │ │ ├── t2bv_16.c │ │ │ ├── t2bv_2.c │ │ │ ├── t2bv_20.c │ │ │ ├── t2bv_25.c │ │ │ ├── t2bv_32.c │ │ │ ├── t2bv_4.c │ │ │ ├── t2bv_5.c │ │ │ ├── t2bv_64.c │ │ │ ├── t2bv_8.c │ │ │ ├── t2fv_10.c │ │ │ ├── t2fv_16.c │ │ │ ├── t2fv_2.c │ │ │ ├── t2fv_20.c │ │ │ ├── t2fv_25.c │ │ │ ├── t2fv_32.c │ │ │ ├── t2fv_4.c │ │ │ ├── t2fv_5.c │ │ │ ├── t2fv_64.c │ │ │ ├── t2fv_8.c │ │ │ ├── t2sv_16.c │ │ │ ├── t2sv_32.c │ │ │ ├── t2sv_4.c │ │ │ ├── t2sv_8.c │ │ │ ├── t3bv_10.c │ │ │ ├── t3bv_16.c │ │ │ ├── t3bv_20.c │ │ │ ├── t3bv_25.c │ │ │ ├── t3bv_32.c │ │ │ ├── t3bv_4.c │ │ │ ├── t3bv_5.c │ │ │ ├── t3bv_8.c │ │ │ ├── t3fv_10.c │ │ │ ├── t3fv_16.c │ │ │ ├── t3fv_20.c │ │ │ ├── t3fv_25.c │ │ │ ├── t3fv_32.c │ │ │ ├── t3fv_4.c │ │ │ ├── t3fv_5.c │ │ │ └── t3fv_8.c │ │ ├── avx │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── n1bv_10.c │ │ │ ├── n1bv_11.c │ │ │ ├── n1bv_12.c │ │ │ ├── n1bv_128.c │ │ │ ├── n1bv_13.c │ │ │ ├── n1bv_14.c │ │ │ ├── n1bv_15.c │ │ │ ├── n1bv_16.c │ │ │ ├── n1bv_2.c │ │ │ ├── n1bv_20.c │ │ │ ├── n1bv_25.c │ │ │ ├── n1bv_3.c │ │ │ ├── n1bv_32.c │ │ │ ├── n1bv_4.c │ │ │ ├── n1bv_5.c │ │ │ ├── n1bv_6.c │ │ │ ├── n1bv_64.c │ │ │ ├── n1bv_7.c │ │ │ ├── n1bv_8.c │ │ │ ├── n1bv_9.c │ │ │ ├── n1fv_10.c │ │ │ ├── n1fv_11.c │ │ │ ├── n1fv_12.c │ │ │ ├── n1fv_128.c │ │ │ ├── n1fv_13.c │ │ │ ├── n1fv_14.c │ │ │ ├── n1fv_15.c │ │ │ ├── n1fv_16.c │ │ │ ├── n1fv_2.c │ │ │ ├── n1fv_20.c │ │ │ ├── n1fv_25.c │ │ │ ├── n1fv_3.c │ │ │ ├── n1fv_32.c │ │ │ ├── n1fv_4.c │ │ │ ├── n1fv_5.c │ │ │ ├── n1fv_6.c │ │ │ ├── n1fv_64.c │ │ │ ├── n1fv_7.c │ │ │ ├── n1fv_8.c │ │ │ ├── n1fv_9.c │ │ │ ├── n2bv_10.c │ │ │ ├── n2bv_12.c │ │ │ ├── n2bv_14.c │ │ │ ├── n2bv_16.c │ │ │ ├── n2bv_2.c │ │ │ ├── n2bv_20.c │ │ │ ├── n2bv_32.c │ │ │ ├── n2bv_4.c │ │ │ ├── n2bv_6.c │ │ │ ├── n2bv_64.c │ │ │ ├── n2bv_8.c │ │ │ ├── n2fv_10.c │ │ │ ├── n2fv_12.c │ │ │ ├── n2fv_14.c │ │ │ ├── n2fv_16.c │ │ │ ├── n2fv_2.c │ │ │ ├── n2fv_20.c │ │ │ ├── n2fv_32.c │ │ │ ├── n2fv_4.c │ │ │ ├── n2fv_6.c │ │ │ ├── n2fv_64.c │ │ │ ├── n2fv_8.c │ │ │ ├── n2sv_16.c │ │ │ ├── n2sv_32.c │ │ │ ├── n2sv_4.c │ │ │ ├── n2sv_64.c │ │ │ ├── n2sv_8.c │ │ │ ├── q1bv_2.c │ │ │ ├── q1bv_4.c │ │ │ ├── q1bv_5.c │ │ │ ├── q1bv_8.c │ │ │ ├── q1fv_2.c │ │ │ ├── q1fv_4.c │ │ │ ├── q1fv_5.c │ │ │ ├── q1fv_8.c │ │ │ ├── t1buv_10.c │ │ │ ├── t1buv_2.c │ │ │ ├── t1buv_3.c │ │ │ ├── t1buv_4.c │ │ │ ├── t1buv_5.c │ │ │ ├── t1buv_6.c │ │ │ ├── t1buv_7.c │ │ │ ├── t1buv_8.c │ │ │ ├── t1buv_9.c │ │ │ ├── t1bv_10.c │ │ │ ├── t1bv_12.c │ │ │ ├── t1bv_15.c │ │ │ ├── t1bv_16.c │ │ │ ├── t1bv_2.c │ │ │ ├── t1bv_20.c │ │ │ ├── t1bv_25.c │ │ │ ├── t1bv_3.c │ │ │ ├── t1bv_32.c │ │ │ ├── t1bv_4.c │ │ │ ├── t1bv_5.c │ │ │ ├── t1bv_6.c │ │ │ ├── t1bv_64.c │ │ │ ├── t1bv_7.c │ │ │ ├── t1bv_8.c │ │ │ ├── t1bv_9.c │ │ │ ├── t1fuv_10.c │ │ │ ├── t1fuv_2.c │ │ │ ├── t1fuv_3.c │ │ │ ├── t1fuv_4.c │ │ │ ├── t1fuv_5.c │ │ │ ├── t1fuv_6.c │ │ │ ├── t1fuv_7.c │ │ │ ├── t1fuv_8.c │ │ │ ├── t1fuv_9.c │ │ │ ├── t1fv_10.c │ │ │ ├── t1fv_12.c │ │ │ ├── t1fv_15.c │ │ │ ├── t1fv_16.c │ │ │ ├── t1fv_2.c │ │ │ ├── t1fv_20.c │ │ │ ├── t1fv_25.c │ │ │ ├── t1fv_3.c │ │ │ ├── t1fv_32.c │ │ │ ├── t1fv_4.c │ │ │ ├── t1fv_5.c │ │ │ ├── t1fv_6.c │ │ │ ├── t1fv_64.c │ │ │ ├── t1fv_7.c │ │ │ ├── t1fv_8.c │ │ │ ├── t1fv_9.c │ │ │ ├── t1sv_16.c │ │ │ ├── t1sv_2.c │ │ │ ├── t1sv_32.c │ │ │ ├── t1sv_4.c │ │ │ ├── t1sv_8.c │ │ │ ├── t2bv_10.c │ │ │ ├── t2bv_16.c │ │ │ ├── t2bv_2.c │ │ │ ├── t2bv_20.c │ │ │ ├── t2bv_25.c │ │ │ ├── t2bv_32.c │ │ │ ├── t2bv_4.c │ │ │ ├── t2bv_5.c │ │ │ ├── t2bv_64.c │ │ │ ├── t2bv_8.c │ │ │ ├── t2fv_10.c │ │ │ ├── t2fv_16.c │ │ │ ├── t2fv_2.c │ │ │ ├── t2fv_20.c │ │ │ ├── t2fv_25.c │ │ │ ├── t2fv_32.c │ │ │ ├── t2fv_4.c │ │ │ ├── t2fv_5.c │ │ │ ├── t2fv_64.c │ │ │ ├── t2fv_8.c │ │ │ ├── t2sv_16.c │ │ │ ├── t2sv_32.c │ │ │ ├── t2sv_4.c │ │ │ ├── t2sv_8.c │ │ │ ├── t3bv_10.c │ │ │ ├── t3bv_16.c │ │ │ ├── t3bv_20.c │ │ │ ├── t3bv_25.c │ │ │ ├── t3bv_32.c │ │ │ ├── t3bv_4.c │ │ │ ├── t3bv_5.c │ │ │ ├── t3bv_8.c │ │ │ ├── t3fv_10.c │ │ │ ├── t3fv_16.c │ │ │ ├── t3fv_20.c │ │ │ ├── t3fv_25.c │ │ │ ├── t3fv_32.c │ │ │ ├── t3fv_4.c │ │ │ ├── t3fv_5.c │ │ │ └── t3fv_8.c │ │ ├── avx2-128 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── n1bv_10.c │ │ │ ├── n1bv_11.c │ │ │ ├── n1bv_12.c │ │ │ ├── n1bv_128.c │ │ │ ├── n1bv_13.c │ │ │ ├── n1bv_14.c │ │ │ ├── n1bv_15.c │ │ │ ├── n1bv_16.c │ │ │ ├── n1bv_2.c │ │ │ ├── n1bv_20.c │ │ │ ├── n1bv_25.c │ │ │ ├── n1bv_3.c │ │ │ ├── n1bv_32.c │ │ │ ├── n1bv_4.c │ │ │ ├── n1bv_5.c │ │ │ ├── n1bv_6.c │ │ │ ├── n1bv_64.c │ │ │ ├── n1bv_7.c │ │ │ ├── n1bv_8.c │ │ │ ├── n1bv_9.c │ │ │ ├── n1fv_10.c │ │ │ ├── n1fv_11.c │ │ │ ├── n1fv_12.c │ │ │ ├── n1fv_128.c │ │ │ ├── n1fv_13.c │ │ │ ├── n1fv_14.c │ │ │ ├── n1fv_15.c │ │ │ ├── n1fv_16.c │ │ │ ├── n1fv_2.c │ │ │ ├── n1fv_20.c │ │ │ ├── n1fv_25.c │ │ │ ├── n1fv_3.c │ │ │ ├── n1fv_32.c │ │ │ ├── n1fv_4.c │ │ │ ├── n1fv_5.c │ │ │ ├── n1fv_6.c │ │ │ ├── n1fv_64.c │ │ │ ├── n1fv_7.c │ │ │ ├── n1fv_8.c │ │ │ ├── n1fv_9.c │ │ │ ├── n2bv_10.c │ │ │ ├── n2bv_12.c │ │ │ ├── n2bv_14.c │ │ │ ├── n2bv_16.c │ │ │ ├── n2bv_2.c │ │ │ ├── n2bv_20.c │ │ │ ├── n2bv_32.c │ │ │ ├── n2bv_4.c │ │ │ ├── n2bv_6.c │ │ │ ├── n2bv_64.c │ │ │ ├── n2bv_8.c │ │ │ ├── n2fv_10.c │ │ │ ├── n2fv_12.c │ │ │ ├── n2fv_14.c │ │ │ ├── n2fv_16.c │ │ │ ├── n2fv_2.c │ │ │ ├── n2fv_20.c │ │ │ ├── n2fv_32.c │ │ │ ├── n2fv_4.c │ │ │ ├── n2fv_6.c │ │ │ ├── n2fv_64.c │ │ │ ├── n2fv_8.c │ │ │ ├── n2sv_16.c │ │ │ ├── n2sv_32.c │ │ │ ├── n2sv_4.c │ │ │ ├── n2sv_64.c │ │ │ ├── n2sv_8.c │ │ │ ├── q1bv_2.c │ │ │ ├── q1bv_4.c │ │ │ ├── q1bv_5.c │ │ │ ├── q1bv_8.c │ │ │ ├── q1fv_2.c │ │ │ ├── q1fv_4.c │ │ │ ├── q1fv_5.c │ │ │ ├── q1fv_8.c │ │ │ ├── t1buv_10.c │ │ │ ├── t1buv_2.c │ │ │ ├── t1buv_3.c │ │ │ ├── t1buv_4.c │ │ │ ├── t1buv_5.c │ │ │ ├── t1buv_6.c │ │ │ ├── t1buv_7.c │ │ │ ├── t1buv_8.c │ │ │ ├── t1buv_9.c │ │ │ ├── t1bv_10.c │ │ │ ├── t1bv_12.c │ │ │ ├── t1bv_15.c │ │ │ ├── t1bv_16.c │ │ │ ├── t1bv_2.c │ │ │ ├── t1bv_20.c │ │ │ ├── t1bv_25.c │ │ │ ├── t1bv_3.c │ │ │ ├── t1bv_32.c │ │ │ ├── t1bv_4.c │ │ │ ├── t1bv_5.c │ │ │ ├── t1bv_6.c │ │ │ ├── t1bv_64.c │ │ │ ├── t1bv_7.c │ │ │ ├── t1bv_8.c │ │ │ ├── t1bv_9.c │ │ │ ├── t1fuv_10.c │ │ │ ├── t1fuv_2.c │ │ │ ├── t1fuv_3.c │ │ │ ├── t1fuv_4.c │ │ │ ├── t1fuv_5.c │ │ │ ├── t1fuv_6.c │ │ │ ├── t1fuv_7.c │ │ │ ├── t1fuv_8.c │ │ │ ├── t1fuv_9.c │ │ │ ├── t1fv_10.c │ │ │ ├── t1fv_12.c │ │ │ ├── t1fv_15.c │ │ │ ├── t1fv_16.c │ │ │ ├── t1fv_2.c │ │ │ ├── t1fv_20.c │ │ │ ├── t1fv_25.c │ │ │ ├── t1fv_3.c │ │ │ ├── t1fv_32.c │ │ │ ├── t1fv_4.c │ │ │ ├── t1fv_5.c │ │ │ ├── t1fv_6.c │ │ │ ├── t1fv_64.c │ │ │ ├── t1fv_7.c │ │ │ ├── t1fv_8.c │ │ │ ├── t1fv_9.c │ │ │ ├── t1sv_16.c │ │ │ ├── t1sv_2.c │ │ │ ├── t1sv_32.c │ │ │ ├── t1sv_4.c │ │ │ ├── t1sv_8.c │ │ │ ├── t2bv_10.c │ │ │ ├── t2bv_16.c │ │ │ ├── t2bv_2.c │ │ │ ├── t2bv_20.c │ │ │ ├── t2bv_25.c │ │ │ ├── t2bv_32.c │ │ │ ├── t2bv_4.c │ │ │ ├── t2bv_5.c │ │ │ ├── t2bv_64.c │ │ │ ├── t2bv_8.c │ │ │ ├── t2fv_10.c │ │ │ ├── t2fv_16.c │ │ │ ├── t2fv_2.c │ │ │ ├── t2fv_20.c │ │ │ ├── t2fv_25.c │ │ │ ├── t2fv_32.c │ │ │ ├── t2fv_4.c │ │ │ ├── t2fv_5.c │ │ │ ├── t2fv_64.c │ │ │ ├── t2fv_8.c │ │ │ ├── t2sv_16.c │ │ │ ├── t2sv_32.c │ │ │ ├── t2sv_4.c │ │ │ ├── t2sv_8.c │ │ │ ├── t3bv_10.c │ │ │ ├── t3bv_16.c │ │ │ ├── t3bv_20.c │ │ │ ├── t3bv_25.c │ │ │ ├── t3bv_32.c │ │ │ ├── t3bv_4.c │ │ │ ├── t3bv_5.c │ │ │ ├── t3bv_8.c │ │ │ ├── t3fv_10.c │ │ │ ├── t3fv_16.c │ │ │ ├── t3fv_20.c │ │ │ ├── t3fv_25.c │ │ │ ├── t3fv_32.c │ │ │ ├── t3fv_4.c │ │ │ ├── t3fv_5.c │ │ │ └── t3fv_8.c │ │ ├── avx2 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── n1bv_10.c │ │ │ ├── n1bv_11.c │ │ │ ├── n1bv_12.c │ │ │ ├── n1bv_128.c │ │ │ ├── n1bv_13.c │ │ │ ├── n1bv_14.c │ │ │ ├── n1bv_15.c │ │ │ ├── n1bv_16.c │ │ │ ├── n1bv_2.c │ │ │ ├── n1bv_20.c │ │ │ ├── n1bv_25.c │ │ │ ├── n1bv_3.c │ │ │ ├── n1bv_32.c │ │ │ ├── n1bv_4.c │ │ │ ├── n1bv_5.c │ │ │ ├── n1bv_6.c │ │ │ ├── n1bv_64.c │ │ │ ├── n1bv_7.c │ │ │ ├── n1bv_8.c │ │ │ ├── n1bv_9.c │ │ │ ├── n1fv_10.c │ │ │ ├── n1fv_11.c │ │ │ ├── n1fv_12.c │ │ │ ├── n1fv_128.c │ │ │ ├── n1fv_13.c │ │ │ ├── n1fv_14.c │ │ │ ├── n1fv_15.c │ │ │ ├── n1fv_16.c │ │ │ ├── n1fv_2.c │ │ │ ├── n1fv_20.c │ │ │ ├── n1fv_25.c │ │ │ ├── n1fv_3.c │ │ │ ├── n1fv_32.c │ │ │ ├── n1fv_4.c │ │ │ ├── n1fv_5.c │ │ │ ├── n1fv_6.c │ │ │ ├── n1fv_64.c │ │ │ ├── n1fv_7.c │ │ │ ├── n1fv_8.c │ │ │ ├── n1fv_9.c │ │ │ ├── n2bv_10.c │ │ │ ├── n2bv_12.c │ │ │ ├── n2bv_14.c │ │ │ ├── n2bv_16.c │ │ │ ├── n2bv_2.c │ │ │ ├── n2bv_20.c │ │ │ ├── n2bv_32.c │ │ │ ├── n2bv_4.c │ │ │ ├── n2bv_6.c │ │ │ ├── n2bv_64.c │ │ │ ├── n2bv_8.c │ │ │ ├── n2fv_10.c │ │ │ ├── n2fv_12.c │ │ │ ├── n2fv_14.c │ │ │ ├── n2fv_16.c │ │ │ ├── n2fv_2.c │ │ │ ├── n2fv_20.c │ │ │ ├── n2fv_32.c │ │ │ ├── n2fv_4.c │ │ │ ├── n2fv_6.c │ │ │ ├── n2fv_64.c │ │ │ ├── n2fv_8.c │ │ │ ├── n2sv_16.c │ │ │ ├── n2sv_32.c │ │ │ ├── n2sv_4.c │ │ │ ├── n2sv_64.c │ │ │ ├── n2sv_8.c │ │ │ ├── q1bv_2.c │ │ │ ├── q1bv_4.c │ │ │ ├── q1bv_5.c │ │ │ ├── q1bv_8.c │ │ │ ├── q1fv_2.c │ │ │ ├── q1fv_4.c │ │ │ ├── q1fv_5.c │ │ │ ├── q1fv_8.c │ │ │ ├── t1buv_10.c │ │ │ ├── t1buv_2.c │ │ │ ├── t1buv_3.c │ │ │ ├── t1buv_4.c │ │ │ ├── t1buv_5.c │ │ │ ├── t1buv_6.c │ │ │ ├── t1buv_7.c │ │ │ ├── t1buv_8.c │ │ │ ├── t1buv_9.c │ │ │ ├── t1bv_10.c │ │ │ ├── t1bv_12.c │ │ │ ├── t1bv_15.c │ │ │ ├── t1bv_16.c │ │ │ ├── t1bv_2.c │ │ │ ├── t1bv_20.c │ │ │ ├── t1bv_25.c │ │ │ ├── t1bv_3.c │ │ │ ├── t1bv_32.c │ │ │ ├── t1bv_4.c │ │ │ ├── t1bv_5.c │ │ │ ├── t1bv_6.c │ │ │ ├── t1bv_64.c │ │ │ ├── t1bv_7.c │ │ │ ├── t1bv_8.c │ │ │ ├── t1bv_9.c │ │ │ ├── t1fuv_10.c │ │ │ ├── t1fuv_2.c │ │ │ ├── t1fuv_3.c │ │ │ ├── t1fuv_4.c │ │ │ ├── t1fuv_5.c │ │ │ ├── t1fuv_6.c │ │ │ ├── t1fuv_7.c │ │ │ ├── t1fuv_8.c │ │ │ ├── t1fuv_9.c │ │ │ ├── t1fv_10.c │ │ │ ├── t1fv_12.c │ │ │ ├── t1fv_15.c │ │ │ ├── t1fv_16.c │ │ │ ├── t1fv_2.c │ │ │ ├── t1fv_20.c │ │ │ ├── t1fv_25.c │ │ │ ├── t1fv_3.c │ │ │ ├── t1fv_32.c │ │ │ ├── t1fv_4.c │ │ │ ├── t1fv_5.c │ │ │ ├── t1fv_6.c │ │ │ ├── t1fv_64.c │ │ │ ├── t1fv_7.c │ │ │ ├── t1fv_8.c │ │ │ ├── t1fv_9.c │ │ │ ├── t1sv_16.c │ │ │ ├── t1sv_2.c │ │ │ ├── t1sv_32.c │ │ │ ├── t1sv_4.c │ │ │ ├── t1sv_8.c │ │ │ ├── t2bv_10.c │ │ │ ├── t2bv_16.c │ │ │ ├── t2bv_2.c │ │ │ ├── t2bv_20.c │ │ │ ├── t2bv_25.c │ │ │ ├── t2bv_32.c │ │ │ ├── t2bv_4.c │ │ │ ├── t2bv_5.c │ │ │ ├── t2bv_64.c │ │ │ ├── t2bv_8.c │ │ │ ├── t2fv_10.c │ │ │ ├── t2fv_16.c │ │ │ ├── t2fv_2.c │ │ │ ├── t2fv_20.c │ │ │ ├── t2fv_25.c │ │ │ ├── t2fv_32.c │ │ │ ├── t2fv_4.c │ │ │ ├── t2fv_5.c │ │ │ ├── t2fv_64.c │ │ │ ├── t2fv_8.c │ │ │ ├── t2sv_16.c │ │ │ ├── t2sv_32.c │ │ │ ├── t2sv_4.c │ │ │ ├── t2sv_8.c │ │ │ ├── t3bv_10.c │ │ │ ├── t3bv_16.c │ │ │ ├── t3bv_20.c │ │ │ ├── t3bv_25.c │ │ │ ├── t3bv_32.c │ │ │ ├── t3bv_4.c │ │ │ ├── t3bv_5.c │ │ │ ├── t3bv_8.c │ │ │ ├── t3fv_10.c │ │ │ ├── t3fv_16.c │ │ │ ├── t3fv_20.c │ │ │ ├── t3fv_25.c │ │ │ ├── t3fv_32.c │ │ │ ├── t3fv_4.c │ │ │ ├── t3fv_5.c │ │ │ └── t3fv_8.c │ │ ├── avx512 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── n1bv_10.c │ │ │ ├── n1bv_11.c │ │ │ ├── n1bv_12.c │ │ │ ├── n1bv_128.c │ │ │ ├── n1bv_13.c │ │ │ ├── n1bv_14.c │ │ │ ├── n1bv_15.c │ │ │ ├── n1bv_16.c │ │ │ ├── n1bv_2.c │ │ │ ├── n1bv_20.c │ │ │ ├── n1bv_25.c │ │ │ ├── n1bv_3.c │ │ │ ├── n1bv_32.c │ │ │ ├── n1bv_4.c │ │ │ ├── n1bv_5.c │ │ │ ├── n1bv_6.c │ │ │ ├── n1bv_64.c │ │ │ ├── n1bv_7.c │ │ │ ├── n1bv_8.c │ │ │ ├── n1bv_9.c │ │ │ ├── n1fv_10.c │ │ │ ├── n1fv_11.c │ │ │ ├── n1fv_12.c │ │ │ ├── n1fv_128.c │ │ │ ├── n1fv_13.c │ │ │ ├── n1fv_14.c │ │ │ ├── n1fv_15.c │ │ │ ├── n1fv_16.c │ │ │ ├── n1fv_2.c │ │ │ ├── n1fv_20.c │ │ │ ├── n1fv_25.c │ │ │ ├── n1fv_3.c │ │ │ ├── n1fv_32.c │ │ │ ├── n1fv_4.c │ │ │ ├── n1fv_5.c │ │ │ ├── n1fv_6.c │ │ │ ├── n1fv_64.c │ │ │ ├── n1fv_7.c │ │ │ ├── n1fv_8.c │ │ │ ├── n1fv_9.c │ │ │ ├── n2bv_10.c │ │ │ ├── n2bv_12.c │ │ │ ├── n2bv_14.c │ │ │ ├── n2bv_16.c │ │ │ ├── n2bv_2.c │ │ │ ├── n2bv_20.c │ │ │ ├── n2bv_32.c │ │ │ ├── n2bv_4.c │ │ │ ├── n2bv_6.c │ │ │ ├── n2bv_64.c │ │ │ ├── n2bv_8.c │ │ │ ├── n2fv_10.c │ │ │ ├── n2fv_12.c │ │ │ ├── n2fv_14.c │ │ │ ├── n2fv_16.c │ │ │ ├── n2fv_2.c │ │ │ ├── n2fv_20.c │ │ │ ├── n2fv_32.c │ │ │ ├── n2fv_4.c │ │ │ ├── n2fv_6.c │ │ │ ├── n2fv_64.c │ │ │ ├── n2fv_8.c │ │ │ ├── n2sv_16.c │ │ │ ├── n2sv_32.c │ │ │ ├── n2sv_4.c │ │ │ ├── n2sv_64.c │ │ │ ├── n2sv_8.c │ │ │ ├── q1bv_2.c │ │ │ ├── q1bv_4.c │ │ │ ├── q1bv_5.c │ │ │ ├── q1bv_8.c │ │ │ ├── q1fv_2.c │ │ │ ├── q1fv_4.c │ │ │ ├── q1fv_5.c │ │ │ ├── q1fv_8.c │ │ │ ├── t1buv_10.c │ │ │ ├── t1buv_2.c │ │ │ ├── t1buv_3.c │ │ │ ├── t1buv_4.c │ │ │ ├── t1buv_5.c │ │ │ ├── t1buv_6.c │ │ │ ├── t1buv_7.c │ │ │ ├── t1buv_8.c │ │ │ ├── t1buv_9.c │ │ │ ├── t1bv_10.c │ │ │ ├── t1bv_12.c │ │ │ ├── t1bv_15.c │ │ │ ├── t1bv_16.c │ │ │ ├── t1bv_2.c │ │ │ ├── t1bv_20.c │ │ │ ├── t1bv_25.c │ │ │ ├── t1bv_3.c │ │ │ ├── t1bv_32.c │ │ │ ├── t1bv_4.c │ │ │ ├── t1bv_5.c │ │ │ ├── t1bv_6.c │ │ │ ├── t1bv_64.c │ │ │ ├── t1bv_7.c │ │ │ ├── t1bv_8.c │ │ │ ├── t1bv_9.c │ │ │ ├── t1fuv_10.c │ │ │ ├── t1fuv_2.c │ │ │ ├── t1fuv_3.c │ │ │ ├── t1fuv_4.c │ │ │ ├── t1fuv_5.c │ │ │ ├── t1fuv_6.c │ │ │ ├── t1fuv_7.c │ │ │ ├── t1fuv_8.c │ │ │ ├── t1fuv_9.c │ │ │ ├── t1fv_10.c │ │ │ ├── t1fv_12.c │ │ │ ├── t1fv_15.c │ │ │ ├── t1fv_16.c │ │ │ ├── t1fv_2.c │ │ │ ├── t1fv_20.c │ │ │ ├── t1fv_25.c │ │ │ ├── t1fv_3.c │ │ │ ├── t1fv_32.c │ │ │ ├── t1fv_4.c │ │ │ ├── t1fv_5.c │ │ │ ├── t1fv_6.c │ │ │ ├── t1fv_64.c │ │ │ ├── t1fv_7.c │ │ │ ├── t1fv_8.c │ │ │ ├── t1fv_9.c │ │ │ ├── t1sv_16.c │ │ │ ├── t1sv_2.c │ │ │ ├── t1sv_32.c │ │ │ ├── t1sv_4.c │ │ │ ├── t1sv_8.c │ │ │ ├── t2bv_10.c │ │ │ ├── t2bv_16.c │ │ │ ├── t2bv_2.c │ │ │ ├── t2bv_20.c │ │ │ ├── t2bv_25.c │ │ │ ├── t2bv_32.c │ │ │ ├── t2bv_4.c │ │ │ ├── t2bv_5.c │ │ │ ├── t2bv_64.c │ │ │ ├── t2bv_8.c │ │ │ ├── t2fv_10.c │ │ │ ├── t2fv_16.c │ │ │ ├── t2fv_2.c │ │ │ ├── t2fv_20.c │ │ │ ├── t2fv_25.c │ │ │ ├── t2fv_32.c │ │ │ ├── t2fv_4.c │ │ │ ├── t2fv_5.c │ │ │ ├── t2fv_64.c │ │ │ ├── t2fv_8.c │ │ │ ├── t2sv_16.c │ │ │ ├── t2sv_32.c │ │ │ ├── t2sv_4.c │ │ │ ├── t2sv_8.c │ │ │ ├── t3bv_10.c │ │ │ ├── t3bv_16.c │ │ │ ├── t3bv_20.c │ │ │ ├── t3bv_25.c │ │ │ ├── t3bv_32.c │ │ │ ├── t3bv_4.c │ │ │ ├── t3bv_5.c │ │ │ ├── t3bv_8.c │ │ │ ├── t3fv_10.c │ │ │ ├── t3fv_16.c │ │ │ ├── t3fv_20.c │ │ │ ├── t3fv_25.c │ │ │ ├── t3fv_32.c │ │ │ ├── t3fv_4.c │ │ │ ├── t3fv_5.c │ │ │ └── t3fv_8.c │ │ ├── codlist.mk │ │ ├── common │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── n1bv_10.c │ │ │ ├── n1bv_11.c │ │ │ ├── n1bv_12.c │ │ │ ├── n1bv_128.c │ │ │ ├── n1bv_13.c │ │ │ ├── n1bv_14.c │ │ │ ├── n1bv_15.c │ │ │ ├── n1bv_16.c │ │ │ ├── n1bv_2.c │ │ │ ├── n1bv_20.c │ │ │ ├── n1bv_25.c │ │ │ ├── n1bv_3.c │ │ │ ├── n1bv_32.c │ │ │ ├── n1bv_4.c │ │ │ ├── n1bv_5.c │ │ │ ├── n1bv_6.c │ │ │ ├── n1bv_64.c │ │ │ ├── n1bv_7.c │ │ │ ├── n1bv_8.c │ │ │ ├── n1bv_9.c │ │ │ ├── n1fv_10.c │ │ │ ├── n1fv_11.c │ │ │ ├── n1fv_12.c │ │ │ ├── n1fv_128.c │ │ │ ├── n1fv_13.c │ │ │ ├── n1fv_14.c │ │ │ ├── n1fv_15.c │ │ │ ├── n1fv_16.c │ │ │ ├── n1fv_2.c │ │ │ ├── n1fv_20.c │ │ │ ├── n1fv_25.c │ │ │ ├── n1fv_3.c │ │ │ ├── n1fv_32.c │ │ │ ├── n1fv_4.c │ │ │ ├── n1fv_5.c │ │ │ ├── n1fv_6.c │ │ │ ├── n1fv_64.c │ │ │ ├── n1fv_7.c │ │ │ ├── n1fv_8.c │ │ │ ├── n1fv_9.c │ │ │ ├── n2bv_10.c │ │ │ ├── n2bv_12.c │ │ │ ├── n2bv_14.c │ │ │ ├── n2bv_16.c │ │ │ ├── n2bv_2.c │ │ │ ├── n2bv_20.c │ │ │ ├── n2bv_32.c │ │ │ ├── n2bv_4.c │ │ │ ├── n2bv_6.c │ │ │ ├── n2bv_64.c │ │ │ ├── n2bv_8.c │ │ │ ├── n2fv_10.c │ │ │ ├── n2fv_12.c │ │ │ ├── n2fv_14.c │ │ │ ├── n2fv_16.c │ │ │ ├── n2fv_2.c │ │ │ ├── n2fv_20.c │ │ │ ├── n2fv_32.c │ │ │ ├── n2fv_4.c │ │ │ ├── n2fv_6.c │ │ │ ├── n2fv_64.c │ │ │ ├── n2fv_8.c │ │ │ ├── n2sv_16.c │ │ │ ├── n2sv_32.c │ │ │ ├── n2sv_4.c │ │ │ ├── n2sv_64.c │ │ │ ├── n2sv_8.c │ │ │ ├── q1bv_2.c │ │ │ ├── q1bv_4.c │ │ │ ├── q1bv_5.c │ │ │ ├── q1bv_8.c │ │ │ ├── q1fv_2.c │ │ │ ├── q1fv_4.c │ │ │ ├── q1fv_5.c │ │ │ ├── q1fv_8.c │ │ │ ├── t1buv_10.c │ │ │ ├── t1buv_2.c │ │ │ ├── t1buv_3.c │ │ │ ├── t1buv_4.c │ │ │ ├── t1buv_5.c │ │ │ ├── t1buv_6.c │ │ │ ├── t1buv_7.c │ │ │ ├── t1buv_8.c │ │ │ ├── t1buv_9.c │ │ │ ├── t1bv_10.c │ │ │ ├── t1bv_12.c │ │ │ ├── t1bv_15.c │ │ │ ├── t1bv_16.c │ │ │ ├── t1bv_2.c │ │ │ ├── t1bv_20.c │ │ │ ├── t1bv_25.c │ │ │ ├── t1bv_3.c │ │ │ ├── t1bv_32.c │ │ │ ├── t1bv_4.c │ │ │ ├── t1bv_5.c │ │ │ ├── t1bv_6.c │ │ │ ├── t1bv_64.c │ │ │ ├── t1bv_7.c │ │ │ ├── t1bv_8.c │ │ │ ├── t1bv_9.c │ │ │ ├── t1fuv_10.c │ │ │ ├── t1fuv_2.c │ │ │ ├── t1fuv_3.c │ │ │ ├── t1fuv_4.c │ │ │ ├── t1fuv_5.c │ │ │ ├── t1fuv_6.c │ │ │ ├── t1fuv_7.c │ │ │ ├── t1fuv_8.c │ │ │ ├── t1fuv_9.c │ │ │ ├── t1fv_10.c │ │ │ ├── t1fv_12.c │ │ │ ├── t1fv_15.c │ │ │ ├── t1fv_16.c │ │ │ ├── t1fv_2.c │ │ │ ├── t1fv_20.c │ │ │ ├── t1fv_25.c │ │ │ ├── t1fv_3.c │ │ │ ├── t1fv_32.c │ │ │ ├── t1fv_4.c │ │ │ ├── t1fv_5.c │ │ │ ├── t1fv_6.c │ │ │ ├── t1fv_64.c │ │ │ ├── t1fv_7.c │ │ │ ├── t1fv_8.c │ │ │ ├── t1fv_9.c │ │ │ ├── t1sv_16.c │ │ │ ├── t1sv_2.c │ │ │ ├── t1sv_32.c │ │ │ ├── t1sv_4.c │ │ │ ├── t1sv_8.c │ │ │ ├── t2bv_10.c │ │ │ ├── t2bv_16.c │ │ │ ├── t2bv_2.c │ │ │ ├── t2bv_20.c │ │ │ ├── t2bv_25.c │ │ │ ├── t2bv_32.c │ │ │ ├── t2bv_4.c │ │ │ ├── t2bv_5.c │ │ │ ├── t2bv_64.c │ │ │ ├── t2bv_8.c │ │ │ ├── t2fv_10.c │ │ │ ├── t2fv_16.c │ │ │ ├── t2fv_2.c │ │ │ ├── t2fv_20.c │ │ │ ├── t2fv_25.c │ │ │ ├── t2fv_32.c │ │ │ ├── t2fv_4.c │ │ │ ├── t2fv_5.c │ │ │ ├── t2fv_64.c │ │ │ ├── t2fv_8.c │ │ │ ├── t2sv_16.c │ │ │ ├── t2sv_32.c │ │ │ ├── t2sv_4.c │ │ │ ├── t2sv_8.c │ │ │ ├── t3bv_10.c │ │ │ ├── t3bv_16.c │ │ │ ├── t3bv_20.c │ │ │ ├── t3bv_25.c │ │ │ ├── t3bv_32.c │ │ │ ├── t3bv_4.c │ │ │ ├── t3bv_5.c │ │ │ ├── t3bv_8.c │ │ │ ├── t3fv_10.c │ │ │ ├── t3fv_16.c │ │ │ ├── t3fv_20.c │ │ │ ├── t3fv_25.c │ │ │ ├── t3fv_32.c │ │ │ ├── t3fv_4.c │ │ │ ├── t3fv_5.c │ │ │ └── t3fv_8.c │ │ ├── generic-simd128 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── n1bv_10.c │ │ │ ├── n1bv_11.c │ │ │ ├── n1bv_12.c │ │ │ ├── n1bv_128.c │ │ │ ├── n1bv_13.c │ │ │ ├── n1bv_14.c │ │ │ ├── n1bv_15.c │ │ │ ├── n1bv_16.c │ │ │ ├── n1bv_2.c │ │ │ ├── n1bv_20.c │ │ │ ├── n1bv_25.c │ │ │ ├── n1bv_3.c │ │ │ ├── n1bv_32.c │ │ │ ├── n1bv_4.c │ │ │ ├── n1bv_5.c │ │ │ ├── n1bv_6.c │ │ │ ├── n1bv_64.c │ │ │ ├── n1bv_7.c │ │ │ ├── n1bv_8.c │ │ │ ├── n1bv_9.c │ │ │ ├── n1fv_10.c │ │ │ ├── n1fv_11.c │ │ │ ├── n1fv_12.c │ │ │ ├── n1fv_128.c │ │ │ ├── n1fv_13.c │ │ │ ├── n1fv_14.c │ │ │ ├── n1fv_15.c │ │ │ ├── n1fv_16.c │ │ │ ├── n1fv_2.c │ │ │ ├── n1fv_20.c │ │ │ ├── n1fv_25.c │ │ │ ├── n1fv_3.c │ │ │ ├── n1fv_32.c │ │ │ ├── n1fv_4.c │ │ │ ├── n1fv_5.c │ │ │ ├── n1fv_6.c │ │ │ ├── n1fv_64.c │ │ │ ├── n1fv_7.c │ │ │ ├── n1fv_8.c │ │ │ ├── n1fv_9.c │ │ │ ├── n2bv_10.c │ │ │ ├── n2bv_12.c │ │ │ ├── n2bv_14.c │ │ │ ├── n2bv_16.c │ │ │ ├── n2bv_2.c │ │ │ ├── n2bv_20.c │ │ │ ├── n2bv_32.c │ │ │ ├── n2bv_4.c │ │ │ ├── n2bv_6.c │ │ │ ├── n2bv_64.c │ │ │ ├── n2bv_8.c │ │ │ ├── n2fv_10.c │ │ │ ├── n2fv_12.c │ │ │ ├── n2fv_14.c │ │ │ ├── n2fv_16.c │ │ │ ├── n2fv_2.c │ │ │ ├── n2fv_20.c │ │ │ ├── n2fv_32.c │ │ │ ├── n2fv_4.c │ │ │ ├── n2fv_6.c │ │ │ ├── n2fv_64.c │ │ │ ├── n2fv_8.c │ │ │ ├── n2sv_16.c │ │ │ ├── n2sv_32.c │ │ │ ├── n2sv_4.c │ │ │ ├── n2sv_64.c │ │ │ ├── n2sv_8.c │ │ │ ├── q1bv_2.c │ │ │ ├── q1bv_4.c │ │ │ ├── q1bv_5.c │ │ │ ├── q1bv_8.c │ │ │ ├── q1fv_2.c │ │ │ ├── q1fv_4.c │ │ │ ├── q1fv_5.c │ │ │ ├── q1fv_8.c │ │ │ ├── t1buv_10.c │ │ │ ├── t1buv_2.c │ │ │ ├── t1buv_3.c │ │ │ ├── t1buv_4.c │ │ │ ├── t1buv_5.c │ │ │ ├── t1buv_6.c │ │ │ ├── t1buv_7.c │ │ │ ├── t1buv_8.c │ │ │ ├── t1buv_9.c │ │ │ ├── t1bv_10.c │ │ │ ├── t1bv_12.c │ │ │ ├── t1bv_15.c │ │ │ ├── t1bv_16.c │ │ │ ├── t1bv_2.c │ │ │ ├── t1bv_20.c │ │ │ ├── t1bv_25.c │ │ │ ├── t1bv_3.c │ │ │ ├── t1bv_32.c │ │ │ ├── t1bv_4.c │ │ │ ├── t1bv_5.c │ │ │ ├── t1bv_6.c │ │ │ ├── t1bv_64.c │ │ │ ├── t1bv_7.c │ │ │ ├── t1bv_8.c │ │ │ ├── t1bv_9.c │ │ │ ├── t1fuv_10.c │ │ │ ├── t1fuv_2.c │ │ │ ├── t1fuv_3.c │ │ │ ├── t1fuv_4.c │ │ │ ├── t1fuv_5.c │ │ │ ├── t1fuv_6.c │ │ │ ├── t1fuv_7.c │ │ │ ├── t1fuv_8.c │ │ │ ├── t1fuv_9.c │ │ │ ├── t1fv_10.c │ │ │ ├── t1fv_12.c │ │ │ ├── t1fv_15.c │ │ │ ├── t1fv_16.c │ │ │ ├── t1fv_2.c │ │ │ ├── t1fv_20.c │ │ │ ├── t1fv_25.c │ │ │ ├── t1fv_3.c │ │ │ ├── t1fv_32.c │ │ │ ├── t1fv_4.c │ │ │ ├── t1fv_5.c │ │ │ ├── t1fv_6.c │ │ │ ├── t1fv_64.c │ │ │ ├── t1fv_7.c │ │ │ ├── t1fv_8.c │ │ │ ├── t1fv_9.c │ │ │ ├── t1sv_16.c │ │ │ ├── t1sv_2.c │ │ │ ├── t1sv_32.c │ │ │ ├── t1sv_4.c │ │ │ ├── t1sv_8.c │ │ │ ├── t2bv_10.c │ │ │ ├── t2bv_16.c │ │ │ ├── t2bv_2.c │ │ │ ├── t2bv_20.c │ │ │ ├── t2bv_25.c │ │ │ ├── t2bv_32.c │ │ │ ├── t2bv_4.c │ │ │ ├── t2bv_5.c │ │ │ ├── t2bv_64.c │ │ │ ├── t2bv_8.c │ │ │ ├── t2fv_10.c │ │ │ ├── t2fv_16.c │ │ │ ├── t2fv_2.c │ │ │ ├── t2fv_20.c │ │ │ ├── t2fv_25.c │ │ │ ├── t2fv_32.c │ │ │ ├── t2fv_4.c │ │ │ ├── t2fv_5.c │ │ │ ├── t2fv_64.c │ │ │ ├── t2fv_8.c │ │ │ ├── t2sv_16.c │ │ │ ├── t2sv_32.c │ │ │ ├── t2sv_4.c │ │ │ ├── t2sv_8.c │ │ │ ├── t3bv_10.c │ │ │ ├── t3bv_16.c │ │ │ ├── t3bv_20.c │ │ │ ├── t3bv_25.c │ │ │ ├── t3bv_32.c │ │ │ ├── t3bv_4.c │ │ │ ├── t3bv_5.c │ │ │ ├── t3bv_8.c │ │ │ ├── t3fv_10.c │ │ │ ├── t3fv_16.c │ │ │ ├── t3fv_20.c │ │ │ ├── t3fv_25.c │ │ │ ├── t3fv_32.c │ │ │ ├── t3fv_4.c │ │ │ ├── t3fv_5.c │ │ │ └── t3fv_8.c │ │ ├── generic-simd256 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── n1bv_10.c │ │ │ ├── n1bv_11.c │ │ │ ├── n1bv_12.c │ │ │ ├── n1bv_128.c │ │ │ ├── n1bv_13.c │ │ │ ├── n1bv_14.c │ │ │ ├── n1bv_15.c │ │ │ ├── n1bv_16.c │ │ │ ├── n1bv_2.c │ │ │ ├── n1bv_20.c │ │ │ ├── n1bv_25.c │ │ │ ├── n1bv_3.c │ │ │ ├── n1bv_32.c │ │ │ ├── n1bv_4.c │ │ │ ├── n1bv_5.c │ │ │ ├── n1bv_6.c │ │ │ ├── n1bv_64.c │ │ │ ├── n1bv_7.c │ │ │ ├── n1bv_8.c │ │ │ ├── n1bv_9.c │ │ │ ├── n1fv_10.c │ │ │ ├── n1fv_11.c │ │ │ ├── n1fv_12.c │ │ │ ├── n1fv_128.c │ │ │ ├── n1fv_13.c │ │ │ ├── n1fv_14.c │ │ │ ├── n1fv_15.c │ │ │ ├── n1fv_16.c │ │ │ ├── n1fv_2.c │ │ │ ├── n1fv_20.c │ │ │ ├── n1fv_25.c │ │ │ ├── n1fv_3.c │ │ │ ├── n1fv_32.c │ │ │ ├── n1fv_4.c │ │ │ ├── n1fv_5.c │ │ │ ├── n1fv_6.c │ │ │ ├── n1fv_64.c │ │ │ ├── n1fv_7.c │ │ │ ├── n1fv_8.c │ │ │ ├── n1fv_9.c │ │ │ ├── n2bv_10.c │ │ │ ├── n2bv_12.c │ │ │ ├── n2bv_14.c │ │ │ ├── n2bv_16.c │ │ │ ├── n2bv_2.c │ │ │ ├── n2bv_20.c │ │ │ ├── n2bv_32.c │ │ │ ├── n2bv_4.c │ │ │ ├── n2bv_6.c │ │ │ ├── n2bv_64.c │ │ │ ├── n2bv_8.c │ │ │ ├── n2fv_10.c │ │ │ ├── n2fv_12.c │ │ │ ├── n2fv_14.c │ │ │ ├── n2fv_16.c │ │ │ ├── n2fv_2.c │ │ │ ├── n2fv_20.c │ │ │ ├── n2fv_32.c │ │ │ ├── n2fv_4.c │ │ │ ├── n2fv_6.c │ │ │ ├── n2fv_64.c │ │ │ ├── n2fv_8.c │ │ │ ├── n2sv_16.c │ │ │ ├── n2sv_32.c │ │ │ ├── n2sv_4.c │ │ │ ├── n2sv_64.c │ │ │ ├── n2sv_8.c │ │ │ ├── q1bv_2.c │ │ │ ├── q1bv_4.c │ │ │ ├── q1bv_5.c │ │ │ ├── q1bv_8.c │ │ │ ├── q1fv_2.c │ │ │ ├── q1fv_4.c │ │ │ ├── q1fv_5.c │ │ │ ├── q1fv_8.c │ │ │ ├── t1buv_10.c │ │ │ ├── t1buv_2.c │ │ │ ├── t1buv_3.c │ │ │ ├── t1buv_4.c │ │ │ ├── t1buv_5.c │ │ │ ├── t1buv_6.c │ │ │ ├── t1buv_7.c │ │ │ ├── t1buv_8.c │ │ │ ├── t1buv_9.c │ │ │ ├── t1bv_10.c │ │ │ ├── t1bv_12.c │ │ │ ├── t1bv_15.c │ │ │ ├── t1bv_16.c │ │ │ ├── t1bv_2.c │ │ │ ├── t1bv_20.c │ │ │ ├── t1bv_25.c │ │ │ ├── t1bv_3.c │ │ │ ├── t1bv_32.c │ │ │ ├── t1bv_4.c │ │ │ ├── t1bv_5.c │ │ │ ├── t1bv_6.c │ │ │ ├── t1bv_64.c │ │ │ ├── t1bv_7.c │ │ │ ├── t1bv_8.c │ │ │ ├── t1bv_9.c │ │ │ ├── t1fuv_10.c │ │ │ ├── t1fuv_2.c │ │ │ ├── t1fuv_3.c │ │ │ ├── t1fuv_4.c │ │ │ ├── t1fuv_5.c │ │ │ ├── t1fuv_6.c │ │ │ ├── t1fuv_7.c │ │ │ ├── t1fuv_8.c │ │ │ ├── t1fuv_9.c │ │ │ ├── t1fv_10.c │ │ │ ├── t1fv_12.c │ │ │ ├── t1fv_15.c │ │ │ ├── t1fv_16.c │ │ │ ├── t1fv_2.c │ │ │ ├── t1fv_20.c │ │ │ ├── t1fv_25.c │ │ │ ├── t1fv_3.c │ │ │ ├── t1fv_32.c │ │ │ ├── t1fv_4.c │ │ │ ├── t1fv_5.c │ │ │ ├── t1fv_6.c │ │ │ ├── t1fv_64.c │ │ │ ├── t1fv_7.c │ │ │ ├── t1fv_8.c │ │ │ ├── t1fv_9.c │ │ │ ├── t1sv_16.c │ │ │ ├── t1sv_2.c │ │ │ ├── t1sv_32.c │ │ │ ├── t1sv_4.c │ │ │ ├── t1sv_8.c │ │ │ ├── t2bv_10.c │ │ │ ├── t2bv_16.c │ │ │ ├── t2bv_2.c │ │ │ ├── t2bv_20.c │ │ │ ├── t2bv_25.c │ │ │ ├── t2bv_32.c │ │ │ ├── t2bv_4.c │ │ │ ├── t2bv_5.c │ │ │ ├── t2bv_64.c │ │ │ ├── t2bv_8.c │ │ │ ├── t2fv_10.c │ │ │ ├── t2fv_16.c │ │ │ ├── t2fv_2.c │ │ │ ├── t2fv_20.c │ │ │ ├── t2fv_25.c │ │ │ ├── t2fv_32.c │ │ │ ├── t2fv_4.c │ │ │ ├── t2fv_5.c │ │ │ ├── t2fv_64.c │ │ │ ├── t2fv_8.c │ │ │ ├── t2sv_16.c │ │ │ ├── t2sv_32.c │ │ │ ├── t2sv_4.c │ │ │ ├── t2sv_8.c │ │ │ ├── t3bv_10.c │ │ │ ├── t3bv_16.c │ │ │ ├── t3bv_20.c │ │ │ ├── t3bv_25.c │ │ │ ├── t3bv_32.c │ │ │ ├── t3bv_4.c │ │ │ ├── t3bv_5.c │ │ │ ├── t3bv_8.c │ │ │ ├── t3fv_10.c │ │ │ ├── t3fv_16.c │ │ │ ├── t3fv_20.c │ │ │ ├── t3fv_25.c │ │ │ ├── t3fv_32.c │ │ │ ├── t3fv_4.c │ │ │ ├── t3fv_5.c │ │ │ └── t3fv_8.c │ │ ├── kcvi │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── n1bv_10.c │ │ │ ├── n1bv_11.c │ │ │ ├── n1bv_12.c │ │ │ ├── n1bv_128.c │ │ │ ├── n1bv_13.c │ │ │ ├── n1bv_14.c │ │ │ ├── n1bv_15.c │ │ │ ├── n1bv_16.c │ │ │ ├── n1bv_2.c │ │ │ ├── n1bv_20.c │ │ │ ├── n1bv_25.c │ │ │ ├── n1bv_3.c │ │ │ ├── n1bv_32.c │ │ │ ├── n1bv_4.c │ │ │ ├── n1bv_5.c │ │ │ ├── n1bv_6.c │ │ │ ├── n1bv_64.c │ │ │ ├── n1bv_7.c │ │ │ ├── n1bv_8.c │ │ │ ├── n1bv_9.c │ │ │ ├── n1fv_10.c │ │ │ ├── n1fv_11.c │ │ │ ├── n1fv_12.c │ │ │ ├── n1fv_128.c │ │ │ ├── n1fv_13.c │ │ │ ├── n1fv_14.c │ │ │ ├── n1fv_15.c │ │ │ ├── n1fv_16.c │ │ │ ├── n1fv_2.c │ │ │ ├── n1fv_20.c │ │ │ ├── n1fv_25.c │ │ │ ├── n1fv_3.c │ │ │ ├── n1fv_32.c │ │ │ ├── n1fv_4.c │ │ │ ├── n1fv_5.c │ │ │ ├── n1fv_6.c │ │ │ ├── n1fv_64.c │ │ │ ├── n1fv_7.c │ │ │ ├── n1fv_8.c │ │ │ ├── n1fv_9.c │ │ │ ├── n2bv_10.c │ │ │ ├── n2bv_12.c │ │ │ ├── n2bv_14.c │ │ │ ├── n2bv_16.c │ │ │ ├── n2bv_2.c │ │ │ ├── n2bv_20.c │ │ │ ├── n2bv_32.c │ │ │ ├── n2bv_4.c │ │ │ ├── n2bv_6.c │ │ │ ├── n2bv_64.c │ │ │ ├── n2bv_8.c │ │ │ ├── n2fv_10.c │ │ │ ├── n2fv_12.c │ │ │ ├── n2fv_14.c │ │ │ ├── n2fv_16.c │ │ │ ├── n2fv_2.c │ │ │ ├── n2fv_20.c │ │ │ ├── n2fv_32.c │ │ │ ├── n2fv_4.c │ │ │ ├── n2fv_6.c │ │ │ ├── n2fv_64.c │ │ │ ├── n2fv_8.c │ │ │ ├── n2sv_16.c │ │ │ ├── n2sv_32.c │ │ │ ├── n2sv_4.c │ │ │ ├── n2sv_64.c │ │ │ ├── n2sv_8.c │ │ │ ├── q1bv_2.c │ │ │ ├── q1bv_4.c │ │ │ ├── q1bv_5.c │ │ │ ├── q1bv_8.c │ │ │ ├── q1fv_2.c │ │ │ ├── q1fv_4.c │ │ │ ├── q1fv_5.c │ │ │ ├── q1fv_8.c │ │ │ ├── t1buv_10.c │ │ │ ├── t1buv_2.c │ │ │ ├── t1buv_3.c │ │ │ ├── t1buv_4.c │ │ │ ├── t1buv_5.c │ │ │ ├── t1buv_6.c │ │ │ ├── t1buv_7.c │ │ │ ├── t1buv_8.c │ │ │ ├── t1buv_9.c │ │ │ ├── t1bv_10.c │ │ │ ├── t1bv_12.c │ │ │ ├── t1bv_15.c │ │ │ ├── t1bv_16.c │ │ │ ├── t1bv_2.c │ │ │ ├── t1bv_20.c │ │ │ ├── t1bv_25.c │ │ │ ├── t1bv_3.c │ │ │ ├── t1bv_32.c │ │ │ ├── t1bv_4.c │ │ │ ├── t1bv_5.c │ │ │ ├── t1bv_6.c │ │ │ ├── t1bv_64.c │ │ │ ├── t1bv_7.c │ │ │ ├── t1bv_8.c │ │ │ ├── t1bv_9.c │ │ │ ├── t1fuv_10.c │ │ │ ├── t1fuv_2.c │ │ │ ├── t1fuv_3.c │ │ │ ├── t1fuv_4.c │ │ │ ├── t1fuv_5.c │ │ │ ├── t1fuv_6.c │ │ │ ├── t1fuv_7.c │ │ │ ├── t1fuv_8.c │ │ │ ├── t1fuv_9.c │ │ │ ├── t1fv_10.c │ │ │ ├── t1fv_12.c │ │ │ ├── t1fv_15.c │ │ │ ├── t1fv_16.c │ │ │ ├── t1fv_2.c │ │ │ ├── t1fv_20.c │ │ │ ├── t1fv_25.c │ │ │ ├── t1fv_3.c │ │ │ ├── t1fv_32.c │ │ │ ├── t1fv_4.c │ │ │ ├── t1fv_5.c │ │ │ ├── t1fv_6.c │ │ │ ├── t1fv_64.c │ │ │ ├── t1fv_7.c │ │ │ ├── t1fv_8.c │ │ │ ├── t1fv_9.c │ │ │ ├── t1sv_16.c │ │ │ ├── t1sv_2.c │ │ │ ├── t1sv_32.c │ │ │ ├── t1sv_4.c │ │ │ ├── t1sv_8.c │ │ │ ├── t2bv_10.c │ │ │ ├── t2bv_16.c │ │ │ ├── t2bv_2.c │ │ │ ├── t2bv_20.c │ │ │ ├── t2bv_25.c │ │ │ ├── t2bv_32.c │ │ │ ├── t2bv_4.c │ │ │ ├── t2bv_5.c │ │ │ ├── t2bv_64.c │ │ │ ├── t2bv_8.c │ │ │ ├── t2fv_10.c │ │ │ ├── t2fv_16.c │ │ │ ├── t2fv_2.c │ │ │ ├── t2fv_20.c │ │ │ ├── t2fv_25.c │ │ │ ├── t2fv_32.c │ │ │ ├── t2fv_4.c │ │ │ ├── t2fv_5.c │ │ │ ├── t2fv_64.c │ │ │ ├── t2fv_8.c │ │ │ ├── t2sv_16.c │ │ │ ├── t2sv_32.c │ │ │ ├── t2sv_4.c │ │ │ ├── t2sv_8.c │ │ │ ├── t3bv_10.c │ │ │ ├── t3bv_16.c │ │ │ ├── t3bv_20.c │ │ │ ├── t3bv_25.c │ │ │ ├── t3bv_32.c │ │ │ ├── t3bv_4.c │ │ │ ├── t3bv_5.c │ │ │ ├── t3bv_8.c │ │ │ ├── t3fv_10.c │ │ │ ├── t3fv_16.c │ │ │ ├── t3fv_20.c │ │ │ ├── t3fv_25.c │ │ │ ├── t3fv_32.c │ │ │ ├── t3fv_4.c │ │ │ ├── t3fv_5.c │ │ │ └── t3fv_8.c │ │ ├── n1b.h │ │ ├── n1f.h │ │ ├── n2b.h │ │ ├── n2f.h │ │ ├── n2s.h │ │ ├── neon │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── n1bv_10.c │ │ │ ├── n1bv_11.c │ │ │ ├── n1bv_12.c │ │ │ ├── n1bv_128.c │ │ │ ├── n1bv_13.c │ │ │ ├── n1bv_14.c │ │ │ ├── n1bv_15.c │ │ │ ├── n1bv_16.c │ │ │ ├── n1bv_2.c │ │ │ ├── n1bv_20.c │ │ │ ├── n1bv_25.c │ │ │ ├── n1bv_3.c │ │ │ ├── n1bv_32.c │ │ │ ├── n1bv_4.c │ │ │ ├── n1bv_5.c │ │ │ ├── n1bv_6.c │ │ │ ├── n1bv_64.c │ │ │ ├── n1bv_7.c │ │ │ ├── n1bv_8.c │ │ │ ├── n1bv_9.c │ │ │ ├── n1fv_10.c │ │ │ ├── n1fv_11.c │ │ │ ├── n1fv_12.c │ │ │ ├── n1fv_128.c │ │ │ ├── n1fv_13.c │ │ │ ├── n1fv_14.c │ │ │ ├── n1fv_15.c │ │ │ ├── n1fv_16.c │ │ │ ├── n1fv_2.c │ │ │ ├── n1fv_20.c │ │ │ ├── n1fv_25.c │ │ │ ├── n1fv_3.c │ │ │ ├── n1fv_32.c │ │ │ ├── n1fv_4.c │ │ │ ├── n1fv_5.c │ │ │ ├── n1fv_6.c │ │ │ ├── n1fv_64.c │ │ │ ├── n1fv_7.c │ │ │ ├── n1fv_8.c │ │ │ ├── n1fv_9.c │ │ │ ├── n2bv_10.c │ │ │ ├── n2bv_12.c │ │ │ ├── n2bv_14.c │ │ │ ├── n2bv_16.c │ │ │ ├── n2bv_2.c │ │ │ ├── n2bv_20.c │ │ │ ├── n2bv_32.c │ │ │ ├── n2bv_4.c │ │ │ ├── n2bv_6.c │ │ │ ├── n2bv_64.c │ │ │ ├── n2bv_8.c │ │ │ ├── n2fv_10.c │ │ │ ├── n2fv_12.c │ │ │ ├── n2fv_14.c │ │ │ ├── n2fv_16.c │ │ │ ├── n2fv_2.c │ │ │ ├── n2fv_20.c │ │ │ ├── n2fv_32.c │ │ │ ├── n2fv_4.c │ │ │ ├── n2fv_6.c │ │ │ ├── n2fv_64.c │ │ │ ├── n2fv_8.c │ │ │ ├── n2sv_16.c │ │ │ ├── n2sv_32.c │ │ │ ├── n2sv_4.c │ │ │ ├── n2sv_64.c │ │ │ ├── n2sv_8.c │ │ │ ├── q1bv_2.c │ │ │ ├── q1bv_4.c │ │ │ ├── q1bv_5.c │ │ │ ├── q1bv_8.c │ │ │ ├── q1fv_2.c │ │ │ ├── q1fv_4.c │ │ │ ├── q1fv_5.c │ │ │ ├── q1fv_8.c │ │ │ ├── t1buv_10.c │ │ │ ├── t1buv_2.c │ │ │ ├── t1buv_3.c │ │ │ ├── t1buv_4.c │ │ │ ├── t1buv_5.c │ │ │ ├── t1buv_6.c │ │ │ ├── t1buv_7.c │ │ │ ├── t1buv_8.c │ │ │ ├── t1buv_9.c │ │ │ ├── t1bv_10.c │ │ │ ├── t1bv_12.c │ │ │ ├── t1bv_15.c │ │ │ ├── t1bv_16.c │ │ │ ├── t1bv_2.c │ │ │ ├── t1bv_20.c │ │ │ ├── t1bv_25.c │ │ │ ├── t1bv_3.c │ │ │ ├── t1bv_32.c │ │ │ ├── t1bv_4.c │ │ │ ├── t1bv_5.c │ │ │ ├── t1bv_6.c │ │ │ ├── t1bv_64.c │ │ │ ├── t1bv_7.c │ │ │ ├── t1bv_8.c │ │ │ ├── t1bv_9.c │ │ │ ├── t1fuv_10.c │ │ │ ├── t1fuv_2.c │ │ │ ├── t1fuv_3.c │ │ │ ├── t1fuv_4.c │ │ │ ├── t1fuv_5.c │ │ │ ├── t1fuv_6.c │ │ │ ├── t1fuv_7.c │ │ │ ├── t1fuv_8.c │ │ │ ├── t1fuv_9.c │ │ │ ├── t1fv_10.c │ │ │ ├── t1fv_12.c │ │ │ ├── t1fv_15.c │ │ │ ├── t1fv_16.c │ │ │ ├── t1fv_2.c │ │ │ ├── t1fv_20.c │ │ │ ├── t1fv_25.c │ │ │ ├── t1fv_3.c │ │ │ ├── t1fv_32.c │ │ │ ├── t1fv_4.c │ │ │ ├── t1fv_5.c │ │ │ ├── t1fv_6.c │ │ │ ├── t1fv_64.c │ │ │ ├── t1fv_7.c │ │ │ ├── t1fv_8.c │ │ │ ├── t1fv_9.c │ │ │ ├── t1sv_16.c │ │ │ ├── t1sv_2.c │ │ │ ├── t1sv_32.c │ │ │ ├── t1sv_4.c │ │ │ ├── t1sv_8.c │ │ │ ├── t2bv_10.c │ │ │ ├── t2bv_16.c │ │ │ ├── t2bv_2.c │ │ │ ├── t2bv_20.c │ │ │ ├── t2bv_25.c │ │ │ ├── t2bv_32.c │ │ │ ├── t2bv_4.c │ │ │ ├── t2bv_5.c │ │ │ ├── t2bv_64.c │ │ │ ├── t2bv_8.c │ │ │ ├── t2fv_10.c │ │ │ ├── t2fv_16.c │ │ │ ├── t2fv_2.c │ │ │ ├── t2fv_20.c │ │ │ ├── t2fv_25.c │ │ │ ├── t2fv_32.c │ │ │ ├── t2fv_4.c │ │ │ ├── t2fv_5.c │ │ │ ├── t2fv_64.c │ │ │ ├── t2fv_8.c │ │ │ ├── t2sv_16.c │ │ │ ├── t2sv_32.c │ │ │ ├── t2sv_4.c │ │ │ ├── t2sv_8.c │ │ │ ├── t3bv_10.c │ │ │ ├── t3bv_16.c │ │ │ ├── t3bv_20.c │ │ │ ├── t3bv_25.c │ │ │ ├── t3bv_32.c │ │ │ ├── t3bv_4.c │ │ │ ├── t3bv_5.c │ │ │ ├── t3bv_8.c │ │ │ ├── t3fv_10.c │ │ │ ├── t3fv_16.c │ │ │ ├── t3fv_20.c │ │ │ ├── t3fv_25.c │ │ │ ├── t3fv_32.c │ │ │ ├── t3fv_4.c │ │ │ ├── t3fv_5.c │ │ │ └── t3fv_8.c │ │ ├── q1b.h │ │ ├── q1f.h │ │ ├── simd.mk │ │ ├── sse2 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── n1bv_10.c │ │ │ ├── n1bv_11.c │ │ │ ├── n1bv_12.c │ │ │ ├── n1bv_128.c │ │ │ ├── n1bv_13.c │ │ │ ├── n1bv_14.c │ │ │ ├── n1bv_15.c │ │ │ ├── n1bv_16.c │ │ │ ├── n1bv_2.c │ │ │ ├── n1bv_20.c │ │ │ ├── n1bv_25.c │ │ │ ├── n1bv_3.c │ │ │ ├── n1bv_32.c │ │ │ ├── n1bv_4.c │ │ │ ├── n1bv_5.c │ │ │ ├── n1bv_6.c │ │ │ ├── n1bv_64.c │ │ │ ├── n1bv_7.c │ │ │ ├── n1bv_8.c │ │ │ ├── n1bv_9.c │ │ │ ├── n1fv_10.c │ │ │ ├── n1fv_11.c │ │ │ ├── n1fv_12.c │ │ │ ├── n1fv_128.c │ │ │ ├── n1fv_13.c │ │ │ ├── n1fv_14.c │ │ │ ├── n1fv_15.c │ │ │ ├── n1fv_16.c │ │ │ ├── n1fv_2.c │ │ │ ├── n1fv_20.c │ │ │ ├── n1fv_25.c │ │ │ ├── n1fv_3.c │ │ │ ├── n1fv_32.c │ │ │ ├── n1fv_4.c │ │ │ ├── n1fv_5.c │ │ │ ├── n1fv_6.c │ │ │ ├── n1fv_64.c │ │ │ ├── n1fv_7.c │ │ │ ├── n1fv_8.c │ │ │ ├── n1fv_9.c │ │ │ ├── n2bv_10.c │ │ │ ├── n2bv_12.c │ │ │ ├── n2bv_14.c │ │ │ ├── n2bv_16.c │ │ │ ├── n2bv_2.c │ │ │ ├── n2bv_20.c │ │ │ ├── n2bv_32.c │ │ │ ├── n2bv_4.c │ │ │ ├── n2bv_6.c │ │ │ ├── n2bv_64.c │ │ │ ├── n2bv_8.c │ │ │ ├── n2fv_10.c │ │ │ ├── n2fv_12.c │ │ │ ├── n2fv_14.c │ │ │ ├── n2fv_16.c │ │ │ ├── n2fv_2.c │ │ │ ├── n2fv_20.c │ │ │ ├── n2fv_32.c │ │ │ ├── n2fv_4.c │ │ │ ├── n2fv_6.c │ │ │ ├── n2fv_64.c │ │ │ ├── n2fv_8.c │ │ │ ├── n2sv_16.c │ │ │ ├── n2sv_32.c │ │ │ ├── n2sv_4.c │ │ │ ├── n2sv_64.c │ │ │ ├── n2sv_8.c │ │ │ ├── q1bv_2.c │ │ │ ├── q1bv_4.c │ │ │ ├── q1bv_5.c │ │ │ ├── q1bv_8.c │ │ │ ├── q1fv_2.c │ │ │ ├── q1fv_4.c │ │ │ ├── q1fv_5.c │ │ │ ├── q1fv_8.c │ │ │ ├── t1buv_10.c │ │ │ ├── t1buv_2.c │ │ │ ├── t1buv_3.c │ │ │ ├── t1buv_4.c │ │ │ ├── t1buv_5.c │ │ │ ├── t1buv_6.c │ │ │ ├── t1buv_7.c │ │ │ ├── t1buv_8.c │ │ │ ├── t1buv_9.c │ │ │ ├── t1bv_10.c │ │ │ ├── t1bv_12.c │ │ │ ├── t1bv_15.c │ │ │ ├── t1bv_16.c │ │ │ ├── t1bv_2.c │ │ │ ├── t1bv_20.c │ │ │ ├── t1bv_25.c │ │ │ ├── t1bv_3.c │ │ │ ├── t1bv_32.c │ │ │ ├── t1bv_4.c │ │ │ ├── t1bv_5.c │ │ │ ├── t1bv_6.c │ │ │ ├── t1bv_64.c │ │ │ ├── t1bv_7.c │ │ │ ├── t1bv_8.c │ │ │ ├── t1bv_9.c │ │ │ ├── t1fuv_10.c │ │ │ ├── t1fuv_2.c │ │ │ ├── t1fuv_3.c │ │ │ ├── t1fuv_4.c │ │ │ ├── t1fuv_5.c │ │ │ ├── t1fuv_6.c │ │ │ ├── t1fuv_7.c │ │ │ ├── t1fuv_8.c │ │ │ ├── t1fuv_9.c │ │ │ ├── t1fv_10.c │ │ │ ├── t1fv_12.c │ │ │ ├── t1fv_15.c │ │ │ ├── t1fv_16.c │ │ │ ├── t1fv_2.c │ │ │ ├── t1fv_20.c │ │ │ ├── t1fv_25.c │ │ │ ├── t1fv_3.c │ │ │ ├── t1fv_32.c │ │ │ ├── t1fv_4.c │ │ │ ├── t1fv_5.c │ │ │ ├── t1fv_6.c │ │ │ ├── t1fv_64.c │ │ │ ├── t1fv_7.c │ │ │ ├── t1fv_8.c │ │ │ ├── t1fv_9.c │ │ │ ├── t1sv_16.c │ │ │ ├── t1sv_2.c │ │ │ ├── t1sv_32.c │ │ │ ├── t1sv_4.c │ │ │ ├── t1sv_8.c │ │ │ ├── t2bv_10.c │ │ │ ├── t2bv_16.c │ │ │ ├── t2bv_2.c │ │ │ ├── t2bv_20.c │ │ │ ├── t2bv_25.c │ │ │ ├── t2bv_32.c │ │ │ ├── t2bv_4.c │ │ │ ├── t2bv_5.c │ │ │ ├── t2bv_64.c │ │ │ ├── t2bv_8.c │ │ │ ├── t2fv_10.c │ │ │ ├── t2fv_16.c │ │ │ ├── t2fv_2.c │ │ │ ├── t2fv_20.c │ │ │ ├── t2fv_25.c │ │ │ ├── t2fv_32.c │ │ │ ├── t2fv_4.c │ │ │ ├── t2fv_5.c │ │ │ ├── t2fv_64.c │ │ │ ├── t2fv_8.c │ │ │ ├── t2sv_16.c │ │ │ ├── t2sv_32.c │ │ │ ├── t2sv_4.c │ │ │ ├── t2sv_8.c │ │ │ ├── t3bv_10.c │ │ │ ├── t3bv_16.c │ │ │ ├── t3bv_20.c │ │ │ ├── t3bv_25.c │ │ │ ├── t3bv_32.c │ │ │ ├── t3bv_4.c │ │ │ ├── t3bv_5.c │ │ │ ├── t3bv_8.c │ │ │ ├── t3fv_10.c │ │ │ ├── t3fv_16.c │ │ │ ├── t3fv_20.c │ │ │ ├── t3fv_25.c │ │ │ ├── t3fv_32.c │ │ │ ├── t3fv_4.c │ │ │ ├── t3fv_5.c │ │ │ └── t3fv_8.c │ │ ├── t1b.h │ │ ├── t1bu.h │ │ ├── t1f.h │ │ ├── t1fu.h │ │ ├── t2b.h │ │ ├── t2f.h │ │ ├── t3b.h │ │ ├── t3f.h │ │ ├── ts.h │ │ └── vsx │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── n1bv_10.c │ │ │ ├── n1bv_11.c │ │ │ ├── n1bv_12.c │ │ │ ├── n1bv_128.c │ │ │ ├── n1bv_13.c │ │ │ ├── n1bv_14.c │ │ │ ├── n1bv_15.c │ │ │ ├── n1bv_16.c │ │ │ ├── n1bv_2.c │ │ │ ├── n1bv_20.c │ │ │ ├── n1bv_25.c │ │ │ ├── n1bv_3.c │ │ │ ├── n1bv_32.c │ │ │ ├── n1bv_4.c │ │ │ ├── n1bv_5.c │ │ │ ├── n1bv_6.c │ │ │ ├── n1bv_64.c │ │ │ ├── n1bv_7.c │ │ │ ├── n1bv_8.c │ │ │ ├── n1bv_9.c │ │ │ ├── n1fv_10.c │ │ │ ├── n1fv_11.c │ │ │ ├── n1fv_12.c │ │ │ ├── n1fv_128.c │ │ │ ├── n1fv_13.c │ │ │ ├── n1fv_14.c │ │ │ ├── n1fv_15.c │ │ │ ├── n1fv_16.c │ │ │ ├── n1fv_2.c │ │ │ ├── n1fv_20.c │ │ │ ├── n1fv_25.c │ │ │ ├── n1fv_3.c │ │ │ ├── n1fv_32.c │ │ │ ├── n1fv_4.c │ │ │ ├── n1fv_5.c │ │ │ ├── n1fv_6.c │ │ │ ├── n1fv_64.c │ │ │ ├── n1fv_7.c │ │ │ ├── n1fv_8.c │ │ │ ├── n1fv_9.c │ │ │ ├── n2bv_10.c │ │ │ ├── n2bv_12.c │ │ │ ├── n2bv_14.c │ │ │ ├── n2bv_16.c │ │ │ ├── n2bv_2.c │ │ │ ├── n2bv_20.c │ │ │ ├── n2bv_32.c │ │ │ ├── n2bv_4.c │ │ │ ├── n2bv_6.c │ │ │ ├── n2bv_64.c │ │ │ ├── n2bv_8.c │ │ │ ├── n2fv_10.c │ │ │ ├── n2fv_12.c │ │ │ ├── n2fv_14.c │ │ │ ├── n2fv_16.c │ │ │ ├── n2fv_2.c │ │ │ ├── n2fv_20.c │ │ │ ├── n2fv_32.c │ │ │ ├── n2fv_4.c │ │ │ ├── n2fv_6.c │ │ │ ├── n2fv_64.c │ │ │ ├── n2fv_8.c │ │ │ ├── n2sv_16.c │ │ │ ├── n2sv_32.c │ │ │ ├── n2sv_4.c │ │ │ ├── n2sv_64.c │ │ │ ├── n2sv_8.c │ │ │ ├── q1bv_2.c │ │ │ ├── q1bv_4.c │ │ │ ├── q1bv_5.c │ │ │ ├── q1bv_8.c │ │ │ ├── q1fv_2.c │ │ │ ├── q1fv_4.c │ │ │ ├── q1fv_5.c │ │ │ ├── q1fv_8.c │ │ │ ├── t1buv_10.c │ │ │ ├── t1buv_2.c │ │ │ ├── t1buv_3.c │ │ │ ├── t1buv_4.c │ │ │ ├── t1buv_5.c │ │ │ ├── t1buv_6.c │ │ │ ├── t1buv_7.c │ │ │ ├── t1buv_8.c │ │ │ ├── t1buv_9.c │ │ │ ├── t1bv_10.c │ │ │ ├── t1bv_12.c │ │ │ ├── t1bv_15.c │ │ │ ├── t1bv_16.c │ │ │ ├── t1bv_2.c │ │ │ ├── t1bv_20.c │ │ │ ├── t1bv_25.c │ │ │ ├── t1bv_3.c │ │ │ ├── t1bv_32.c │ │ │ ├── t1bv_4.c │ │ │ ├── t1bv_5.c │ │ │ ├── t1bv_6.c │ │ │ ├── t1bv_64.c │ │ │ ├── t1bv_7.c │ │ │ ├── t1bv_8.c │ │ │ ├── t1bv_9.c │ │ │ ├── t1fuv_10.c │ │ │ ├── t1fuv_2.c │ │ │ ├── t1fuv_3.c │ │ │ ├── t1fuv_4.c │ │ │ ├── t1fuv_5.c │ │ │ ├── t1fuv_6.c │ │ │ ├── t1fuv_7.c │ │ │ ├── t1fuv_8.c │ │ │ ├── t1fuv_9.c │ │ │ ├── t1fv_10.c │ │ │ ├── t1fv_12.c │ │ │ ├── t1fv_15.c │ │ │ ├── t1fv_16.c │ │ │ ├── t1fv_2.c │ │ │ ├── t1fv_20.c │ │ │ ├── t1fv_25.c │ │ │ ├── t1fv_3.c │ │ │ ├── t1fv_32.c │ │ │ ├── t1fv_4.c │ │ │ ├── t1fv_5.c │ │ │ ├── t1fv_6.c │ │ │ ├── t1fv_64.c │ │ │ ├── t1fv_7.c │ │ │ ├── t1fv_8.c │ │ │ ├── t1fv_9.c │ │ │ ├── t1sv_16.c │ │ │ ├── t1sv_2.c │ │ │ ├── t1sv_32.c │ │ │ ├── t1sv_4.c │ │ │ ├── t1sv_8.c │ │ │ ├── t2bv_10.c │ │ │ ├── t2bv_16.c │ │ │ ├── t2bv_2.c │ │ │ ├── t2bv_20.c │ │ │ ├── t2bv_25.c │ │ │ ├── t2bv_32.c │ │ │ ├── t2bv_4.c │ │ │ ├── t2bv_5.c │ │ │ ├── t2bv_64.c │ │ │ ├── t2bv_8.c │ │ │ ├── t2fv_10.c │ │ │ ├── t2fv_16.c │ │ │ ├── t2fv_2.c │ │ │ ├── t2fv_20.c │ │ │ ├── t2fv_25.c │ │ │ ├── t2fv_32.c │ │ │ ├── t2fv_4.c │ │ │ ├── t2fv_5.c │ │ │ ├── t2fv_64.c │ │ │ ├── t2fv_8.c │ │ │ ├── t2sv_16.c │ │ │ ├── t2sv_32.c │ │ │ ├── t2sv_4.c │ │ │ ├── t2sv_8.c │ │ │ ├── t3bv_10.c │ │ │ ├── t3bv_16.c │ │ │ ├── t3bv_20.c │ │ │ ├── t3bv_25.c │ │ │ ├── t3bv_32.c │ │ │ ├── t3bv_4.c │ │ │ ├── t3bv_5.c │ │ │ ├── t3bv_8.c │ │ │ ├── t3fv_10.c │ │ │ ├── t3fv_16.c │ │ │ ├── t3fv_20.c │ │ │ ├── t3fv_25.c │ │ │ ├── t3fv_32.c │ │ │ ├── t3fv_4.c │ │ │ ├── t3fv_5.c │ │ │ └── t3fv_8.c │ ├── solve.c │ ├── vrank-geq1.c │ └── zero.c │ ├── doc │ ├── FAQ │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bfnnconv.pl │ │ ├── fftw-faq.ascii │ │ ├── fftw-faq.bfnn │ │ ├── fftw-faq.html │ │ │ ├── index.html │ │ │ ├── section1.html │ │ │ ├── section2.html │ │ │ ├── section3.html │ │ │ ├── section4.html │ │ │ └── section5.html │ │ ├── html.refs │ │ ├── m-ascii.pl │ │ ├── m-html.pl │ │ ├── m-info.pl │ │ ├── m-lout.pl │ │ └── m-post.pl │ ├── Makefile.am │ ├── Makefile.in │ ├── acknowledgements.texi │ ├── cindex.texi │ ├── equation-dft.png │ ├── equation-dht.png │ ├── equation-idft.png │ ├── equation-redft00.png │ ├── equation-redft01.png │ ├── equation-redft10.png │ ├── equation-redft11.png │ ├── equation-rodft00.png │ ├── equation-rodft01.png │ ├── equation-rodft10.png │ ├── equation-rodft11.png │ ├── f77_wisdom.f │ ├── fftw3.info │ ├── fftw3.info-1 │ ├── fftw3.info-2 │ ├── fftw3.pdf │ ├── fftw3.texi │ ├── findex.texi │ ├── html │ │ ├── 1d-Discrete-Hartley-Transforms-_0028DHTs_0029.html │ │ ├── 1d-Real_002deven-DFTs-_0028DCTs_0029.html │ │ ├── 1d-Real_002dodd-DFTs-_0028DSTs_0029.html │ │ ├── 2d-MPI-example.html │ │ ├── 64_002dbit-Guru-Interface.html │ │ ├── Accessing-the-wisdom-API-from-Fortran.html │ │ ├── Acknowledgments.html │ │ ├── Advanced-Complex-DFTs.html │ │ ├── Advanced-Interface.html │ │ ├── Advanced-Real_002ddata-DFTs.html │ │ ├── Advanced-Real_002dto_002dreal-Transforms.html │ │ ├── Advanced-distributed_002dtranspose-interface.html │ │ ├── Allocating-aligned-memory-in-Fortran.html │ │ ├── An-improved-replacement-for-MPI_005fAlltoall.html │ │ ├── Avoiding-MPI-Deadlocks.html │ │ ├── Basic-Interface.html │ │ ├── Basic-and-advanced-distribution-interfaces.html │ │ ├── Basic-distributed_002dtranspose-interface.html │ │ ├── Calling-FFTW-from-Legacy-Fortran.html │ │ ├── Calling-FFTW-from-Modern-Fortran.html │ │ ├── Caveats-in-Using-Wisdom.html │ │ ├── Column_002dmajor-Format.html │ │ ├── Combining-MPI-and-Threads.html │ │ ├── Complex-DFTs.html │ │ ├── Complex-Multi_002dDimensional-DFTs.html │ │ ├── Complex-One_002dDimensional-DFTs.html │ │ ├── Complex-numbers.html │ │ ├── Concept-Index.html │ │ ├── Cycle-Counters.html │ │ ├── Data-Types-and-Files.html │ │ ├── Defining-an-FFTW-module.html │ │ ├── Distributed_002dmemory-FFTW-with-MPI.html │ │ ├── Dynamic-Arrays-in-C.html │ │ ├── Dynamic-Arrays-in-C_002dThe-Wrong-Way.html │ │ ├── Extended-and-quadruple-precision-in-Fortran.html │ │ ├── FFTW-Constants-in-Fortran.html │ │ ├── FFTW-Execution-in-Fortran.html │ │ ├── FFTW-Fortran-type-reference.html │ │ ├── FFTW-MPI-Fortran-Interface.html │ │ ├── FFTW-MPI-Installation.html │ │ ├── FFTW-MPI-Performance-Tips.html │ │ ├── FFTW-MPI-Reference.html │ │ ├── FFTW-MPI-Transposes.html │ │ ├── FFTW-MPI-Wisdom.html │ │ ├── FFTW-Reference.html │ │ ├── Fixed_002dsize-Arrays-in-C.html │ │ ├── Forgetting-Wisdom.html │ │ ├── Fortran-Examples.html │ │ ├── Fortran_002dinterface-routines.html │ │ ├── Generating-your-own-code.html │ │ ├── Guru-Complex-DFTs.html │ │ ├── Guru-Interface.html │ │ ├── Guru-Real_002ddata-DFTs.html │ │ ├── Guru-Real_002dto_002dreal-Transforms.html │ │ ├── Guru-vector-and-transform-sizes.html │ │ ├── How-Many-Threads-to-Use_003f.html │ │ ├── Installation-and-Customization.html │ │ ├── Installation-and-Supported-Hardware_002fSoftware.html │ │ ├── Installation-on-Unix.html │ │ ├── Installation-on-non_002dUnix-systems.html │ │ ├── Interleaved-and-split-arrays.html │ │ ├── Introduction.html │ │ ├── Library-Index.html │ │ ├── License-and-Copyright.html │ │ ├── Linking-and-Initializing-MPI-FFTW.html │ │ ├── Load-balancing.html │ │ ├── MPI-Data-Distribution-Functions.html │ │ ├── MPI-Data-Distribution.html │ │ ├── MPI-Files-and-Data-Types.html │ │ ├── MPI-Initialization.html │ │ ├── MPI-Plan-Creation.html │ │ ├── MPI-Wisdom-Communication.html │ │ ├── Memory-Allocation.html │ │ ├── More-DFTs-of-Real-Data.html │ │ ├── Multi_002dDimensional-DFTs-of-Real-Data.html │ │ ├── Multi_002ddimensional-Array-Format.html │ │ ├── Multi_002ddimensional-MPI-DFTs-of-Real-Data.html │ │ ├── Multi_002ddimensional-Transforms.html │ │ ├── Multi_002dthreaded-FFTW.html │ │ ├── New_002darray-Execute-Functions.html │ │ ├── One_002dDimensional-DFTs-of-Real-Data.html │ │ ├── One_002ddimensional-distributions.html │ │ ├── Other-Important-Topics.html │ │ ├── Other-Multi_002ddimensional-Real_002ddata-MPI-Transforms.html │ │ ├── Overview-of-Fortran-interface.html │ │ ├── Plan-execution-in-Fortran.html │ │ ├── Planner-Flags.html │ │ ├── Precision.html │ │ ├── Real-even_002fodd-DFTs-_0028cosine_002fsine-transforms_0029.html │ │ ├── Real_002ddata-DFT-Array-Format.html │ │ ├── Real_002ddata-DFTs.html │ │ ├── Real_002dto_002dReal-Transform-Kinds.html │ │ ├── Real_002dto_002dReal-Transforms.html │ │ ├── Reversing-array-dimensions.html │ │ ├── Row_002dmajor-Format.html │ │ ├── SIMD-alignment-and-fftw_005fmalloc.html │ │ ├── The-1d-Discrete-Fourier-Transform-_0028DFT_0029.html │ │ ├── The-1d-Real_002ddata-DFT.html │ │ ├── The-Discrete-Hartley-Transform.html │ │ ├── The-Halfcomplex_002dformat-DFT.html │ │ ├── Thread-safety.html │ │ ├── Transposed-distributions.html │ │ ├── Tutorial.html │ │ ├── Upgrading-from-FFTW-version-2.html │ │ ├── Usage-of-Multi_002dthreaded-FFTW.html │ │ ├── Using-MPI-Plans.html │ │ ├── Using-Plans.html │ │ ├── What-FFTW-Really-Computes.html │ │ ├── Wisdom-Export.html │ │ ├── Wisdom-File-Export_002fImport-from-Fortran.html │ │ ├── Wisdom-Generic-Export_002fImport-from-Fortran.html │ │ ├── Wisdom-Import.html │ │ ├── Wisdom-String-Export_002fImport-from-Fortran.html │ │ ├── Wisdom-Utilities.html │ │ ├── Wisdom-of-Fortran_003f.html │ │ ├── Wisdom.html │ │ ├── Words-of-Wisdom_002dSaving-Plans.html │ │ ├── equation-dft.png │ │ ├── equation-dht.png │ │ ├── equation-idft.png │ │ ├── equation-redft00.png │ │ ├── equation-redft01.png │ │ ├── equation-redft10.png │ │ ├── equation-redft11.png │ │ ├── equation-rodft00.png │ │ ├── equation-rodft01.png │ │ ├── equation-rodft10.png │ │ ├── equation-rodft11.png │ │ ├── index.html │ │ └── rfftwnd-for-html.png │ ├── install.texi │ ├── intro.texi │ ├── legacy-fortran.texi │ ├── license.texi │ ├── mdate-sh │ ├── modern-fortran.texi │ ├── mpi.texi │ ├── other.texi │ ├── reference.texi │ ├── rfftwnd-for-html.png │ ├── rfftwnd.eps │ ├── rfftwnd.fig │ ├── rfftwnd.pdf │ ├── stamp-vti │ ├── texinfo.tex │ ├── threads.texi │ ├── tutorial.texi │ ├── upgrading.texi │ └── version.texi │ ├── fftw.pc.in │ ├── genfft │ ├── Makefile.am │ ├── Makefile.in │ ├── algsimp.ml │ ├── algsimp.mli │ ├── annotate.ml │ ├── annotate.mli │ ├── assoctable.ml │ ├── assoctable.mli │ ├── c.ml │ ├── c.mli │ ├── complex.ml │ ├── complex.mli │ ├── conv.ml │ ├── conv.mli │ ├── dag.ml │ ├── dag.mli │ ├── expr.ml │ ├── expr.mli │ ├── fft.ml │ ├── fft.mli │ ├── gen_hc2c.ml │ ├── gen_hc2cdft.ml │ ├── gen_hc2cdft_c.ml │ ├── gen_hc2hc.ml │ ├── gen_mdct.ml │ ├── gen_notw.ml │ ├── gen_notw_c.ml │ ├── gen_r2cb.ml │ ├── gen_r2cf.ml │ ├── gen_r2r.ml │ ├── gen_twiddle.ml │ ├── gen_twiddle_c.ml │ ├── gen_twidsq.ml │ ├── gen_twidsq_c.ml │ ├── genutil.ml │ ├── littlesimp.ml │ ├── littlesimp.mli │ ├── magic.ml │ ├── monads.ml │ ├── number.ml │ ├── number.mli │ ├── oracle.ml │ ├── oracle.mli │ ├── schedule.ml │ ├── schedule.mli │ ├── simd.ml │ ├── simd.mli │ ├── simdmagic.ml │ ├── to_alist.ml │ ├── to_alist.mli │ ├── trig.ml │ ├── trig.mli │ ├── twiddle.ml │ ├── twiddle.mli │ ├── unique.ml │ ├── unique.mli │ ├── util.ml │ ├── util.mli │ ├── variable.ml │ └── variable.mli │ ├── install-sh │ ├── kernel │ ├── Makefile.am │ ├── Makefile.in │ ├── align.c │ ├── alloc.c │ ├── assert.c │ ├── awake.c │ ├── buffered.c │ ├── cpy1d.c │ ├── cpy2d-pair.c │ ├── cpy2d.c │ ├── ct.c │ ├── cycle.h │ ├── debug.c │ ├── extract-reim.c │ ├── hash.c │ ├── iabs.c │ ├── ifftw.h │ ├── kalloc.c │ ├── md5-1.c │ ├── md5.c │ ├── minmax.c │ ├── ops.c │ ├── pickdim.c │ ├── plan.c │ ├── planner.c │ ├── primes.c │ ├── print.c │ ├── problem.c │ ├── rader.c │ ├── scan.c │ ├── solver.c │ ├── solvtab.c │ ├── stride.c │ ├── tensor.c │ ├── tensor1.c │ ├── tensor2.c │ ├── tensor3.c │ ├── tensor4.c │ ├── tensor5.c │ ├── tensor7.c │ ├── tensor8.c │ ├── tensor9.c │ ├── tile2d.c │ ├── timer.c │ ├── transpose.c │ ├── trig.c │ └── twiddle.c │ ├── libbench2 │ ├── Makefile.am │ ├── Makefile.in │ ├── after-ccopy-from.c │ ├── after-ccopy-to.c │ ├── after-hccopy-from.c │ ├── after-hccopy-to.c │ ├── after-rcopy-from.c │ ├── after-rcopy-to.c │ ├── allocate.c │ ├── aset.c │ ├── bench-cost-postprocess.c │ ├── bench-exit.c │ ├── bench-main.c │ ├── bench-user.h │ ├── bench.h │ ├── can-do.c │ ├── caset.c │ ├── dotens2.c │ ├── info.c │ ├── main.c │ ├── mflops.c │ ├── mp.c │ ├── my-getopt.c │ ├── my-getopt.h │ ├── ovtpvt.c │ ├── pow2.c │ ├── problem.c │ ├── report.c │ ├── speed.c │ ├── tensor.c │ ├── timer.c │ ├── useropt.c │ ├── util.c │ ├── verify-dft.c │ ├── verify-lib.c │ ├── verify-r2r.c │ ├── verify-rdft2.c │ ├── verify.c │ ├── verify.h │ └── zero.c │ ├── ltmain.sh │ ├── m4 │ ├── Makefile.am │ ├── Makefile.in │ ├── acx_mpi.m4 │ ├── acx_pthread.m4 │ ├── ax_cc_maxopt.m4 │ ├── ax_check_compiler_flags.m4 │ ├── ax_compiler_vendor.m4 │ ├── ax_gcc_aligns_stack.m4 │ ├── ax_gcc_version.m4 │ ├── ax_openmp.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 │ ├── missing │ ├── mpi │ ├── Makefile.am │ ├── Makefile.in │ ├── any-true.c │ ├── api.c │ ├── block.c │ ├── choose-radix.c │ ├── conf.c │ ├── dft-problem.c │ ├── dft-rank-geq2-transposed.c │ ├── dft-rank-geq2.c │ ├── dft-rank1-bigvec.c │ ├── dft-rank1.c │ ├── dft-serial.c │ ├── dft-solve.c │ ├── dtensor.c │ ├── f03-wrap.c │ ├── f03-wrap.sh │ ├── f03api.sh │ ├── fftw3-mpi.f03.in │ ├── fftw3-mpi.h │ ├── fftw3l-mpi.f03.in │ ├── genf03-wrap.pl │ ├── ifftw-mpi.h │ ├── mpi-bench.c │ ├── mpi-dft.h │ ├── mpi-rdft.h │ ├── mpi-rdft2.h │ ├── mpi-transpose.h │ ├── rdft-problem.c │ ├── rdft-rank-geq2-transposed.c │ ├── rdft-rank-geq2.c │ ├── rdft-rank1-bigvec.c │ ├── rdft-serial.c │ ├── rdft-solve.c │ ├── rdft2-problem.c │ ├── rdft2-rank-geq2-transposed.c │ ├── rdft2-rank-geq2.c │ ├── rdft2-serial.c │ ├── rdft2-solve.c │ ├── rearrange.c │ ├── testsched.c │ ├── transpose-alltoall.c │ ├── transpose-pairwise.c │ ├── transpose-problem.c │ ├── transpose-recurse.c │ ├── transpose-solve.c │ └── wisdom-api.c │ ├── rdft │ ├── Makefile.am │ ├── Makefile.in │ ├── buffered.c │ ├── buffered2.c │ ├── codelet-rdft.h │ ├── conf.c │ ├── ct-hc2c-direct.c │ ├── ct-hc2c.c │ ├── ct-hc2c.h │ ├── dft-r2hc.c │ ├── dht-r2hc.c │ ├── dht-rader.c │ ├── direct-r2c.c │ ├── direct-r2r.c │ ├── direct2.c │ ├── generic.c │ ├── hc2hc-direct.c │ ├── hc2hc-generic.c │ ├── hc2hc.c │ ├── hc2hc.h │ ├── indirect.c │ ├── khc2c.c │ ├── khc2hc.c │ ├── kr2c.c │ ├── kr2r.c │ ├── nop.c │ ├── nop2.c │ ├── plan.c │ ├── plan2.c │ ├── problem.c │ ├── problem2.c │ ├── rank-geq2-rdft2.c │ ├── rank-geq2.c │ ├── rank0-rdft2.c │ ├── rank0.c │ ├── rdft-dht.c │ ├── rdft.h │ ├── rdft2-inplace-strides.c │ ├── rdft2-rdft.c │ ├── rdft2-strides.c │ ├── rdft2-tensor-max-index.c │ ├── scalar │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── hb.h │ │ ├── hc2c.c │ │ ├── hc2cb.h │ │ ├── hc2cf.h │ │ ├── hf.h │ │ ├── hfb.c │ │ ├── r2c.c │ │ ├── r2cb.h │ │ ├── r2cb │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── hb2_16.c │ │ │ ├── hb2_20.c │ │ │ ├── hb2_25.c │ │ │ ├── hb2_32.c │ │ │ ├── hb2_4.c │ │ │ ├── hb2_5.c │ │ │ ├── hb2_8.c │ │ │ ├── hb_10.c │ │ │ ├── hb_12.c │ │ │ ├── hb_15.c │ │ │ ├── hb_16.c │ │ │ ├── hb_2.c │ │ │ ├── hb_20.c │ │ │ ├── hb_25.c │ │ │ ├── hb_3.c │ │ │ ├── hb_32.c │ │ │ ├── hb_4.c │ │ │ ├── hb_5.c │ │ │ ├── hb_6.c │ │ │ ├── hb_64.c │ │ │ ├── hb_7.c │ │ │ ├── hb_8.c │ │ │ ├── hb_9.c │ │ │ ├── hc2cb2_16.c │ │ │ ├── hc2cb2_20.c │ │ │ ├── hc2cb2_32.c │ │ │ ├── hc2cb2_4.c │ │ │ ├── hc2cb2_8.c │ │ │ ├── hc2cb_10.c │ │ │ ├── hc2cb_12.c │ │ │ ├── hc2cb_16.c │ │ │ ├── hc2cb_2.c │ │ │ ├── hc2cb_20.c │ │ │ ├── hc2cb_32.c │ │ │ ├── hc2cb_4.c │ │ │ ├── hc2cb_6.c │ │ │ ├── hc2cb_8.c │ │ │ ├── hc2cbdft2_16.c │ │ │ ├── hc2cbdft2_20.c │ │ │ ├── hc2cbdft2_32.c │ │ │ ├── hc2cbdft2_4.c │ │ │ ├── hc2cbdft2_8.c │ │ │ ├── hc2cbdft_10.c │ │ │ ├── hc2cbdft_12.c │ │ │ ├── hc2cbdft_16.c │ │ │ ├── hc2cbdft_2.c │ │ │ ├── hc2cbdft_20.c │ │ │ ├── hc2cbdft_32.c │ │ │ ├── hc2cbdft_4.c │ │ │ ├── hc2cbdft_6.c │ │ │ ├── hc2cbdft_8.c │ │ │ ├── r2cbIII_10.c │ │ │ ├── r2cbIII_12.c │ │ │ ├── r2cbIII_15.c │ │ │ ├── r2cbIII_16.c │ │ │ ├── r2cbIII_2.c │ │ │ ├── r2cbIII_20.c │ │ │ ├── r2cbIII_25.c │ │ │ ├── r2cbIII_3.c │ │ │ ├── r2cbIII_32.c │ │ │ ├── r2cbIII_4.c │ │ │ ├── r2cbIII_5.c │ │ │ ├── r2cbIII_6.c │ │ │ ├── r2cbIII_64.c │ │ │ ├── r2cbIII_7.c │ │ │ ├── r2cbIII_8.c │ │ │ ├── r2cbIII_9.c │ │ │ ├── r2cb_10.c │ │ │ ├── r2cb_11.c │ │ │ ├── r2cb_12.c │ │ │ ├── r2cb_128.c │ │ │ ├── r2cb_13.c │ │ │ ├── r2cb_14.c │ │ │ ├── r2cb_15.c │ │ │ ├── r2cb_16.c │ │ │ ├── r2cb_2.c │ │ │ ├── r2cb_20.c │ │ │ ├── r2cb_25.c │ │ │ ├── r2cb_3.c │ │ │ ├── r2cb_32.c │ │ │ ├── r2cb_4.c │ │ │ ├── r2cb_5.c │ │ │ ├── r2cb_6.c │ │ │ ├── r2cb_64.c │ │ │ ├── r2cb_7.c │ │ │ ├── r2cb_8.c │ │ │ └── r2cb_9.c │ │ ├── r2cbIII.h │ │ ├── r2cf.h │ │ ├── r2cf │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── hc2cf2_16.c │ │ │ ├── hc2cf2_20.c │ │ │ ├── hc2cf2_32.c │ │ │ ├── hc2cf2_4.c │ │ │ ├── hc2cf2_8.c │ │ │ ├── hc2cf_10.c │ │ │ ├── hc2cf_12.c │ │ │ ├── hc2cf_16.c │ │ │ ├── hc2cf_2.c │ │ │ ├── hc2cf_20.c │ │ │ ├── hc2cf_32.c │ │ │ ├── hc2cf_4.c │ │ │ ├── hc2cf_6.c │ │ │ ├── hc2cf_8.c │ │ │ ├── hc2cfdft2_16.c │ │ │ ├── hc2cfdft2_20.c │ │ │ ├── hc2cfdft2_32.c │ │ │ ├── hc2cfdft2_4.c │ │ │ ├── hc2cfdft2_8.c │ │ │ ├── hc2cfdft_10.c │ │ │ ├── hc2cfdft_12.c │ │ │ ├── hc2cfdft_16.c │ │ │ ├── hc2cfdft_2.c │ │ │ ├── hc2cfdft_20.c │ │ │ ├── hc2cfdft_32.c │ │ │ ├── hc2cfdft_4.c │ │ │ ├── hc2cfdft_6.c │ │ │ ├── hc2cfdft_8.c │ │ │ ├── hf2_16.c │ │ │ ├── hf2_20.c │ │ │ ├── hf2_25.c │ │ │ ├── hf2_32.c │ │ │ ├── hf2_4.c │ │ │ ├── hf2_5.c │ │ │ ├── hf2_8.c │ │ │ ├── hf_10.c │ │ │ ├── hf_12.c │ │ │ ├── hf_15.c │ │ │ ├── hf_16.c │ │ │ ├── hf_2.c │ │ │ ├── hf_20.c │ │ │ ├── hf_25.c │ │ │ ├── hf_3.c │ │ │ ├── hf_32.c │ │ │ ├── hf_4.c │ │ │ ├── hf_5.c │ │ │ ├── hf_6.c │ │ │ ├── hf_64.c │ │ │ ├── hf_7.c │ │ │ ├── hf_8.c │ │ │ ├── hf_9.c │ │ │ ├── r2cfII_10.c │ │ │ ├── r2cfII_12.c │ │ │ ├── r2cfII_15.c │ │ │ ├── r2cfII_16.c │ │ │ ├── r2cfII_2.c │ │ │ ├── r2cfII_20.c │ │ │ ├── r2cfII_25.c │ │ │ ├── r2cfII_3.c │ │ │ ├── r2cfII_32.c │ │ │ ├── r2cfII_4.c │ │ │ ├── r2cfII_5.c │ │ │ ├── r2cfII_6.c │ │ │ ├── r2cfII_64.c │ │ │ ├── r2cfII_7.c │ │ │ ├── r2cfII_8.c │ │ │ ├── r2cfII_9.c │ │ │ ├── r2cf_10.c │ │ │ ├── r2cf_11.c │ │ │ ├── r2cf_12.c │ │ │ ├── r2cf_128.c │ │ │ ├── r2cf_13.c │ │ │ ├── r2cf_14.c │ │ │ ├── r2cf_15.c │ │ │ ├── r2cf_16.c │ │ │ ├── r2cf_2.c │ │ │ ├── r2cf_20.c │ │ │ ├── r2cf_25.c │ │ │ ├── r2cf_3.c │ │ │ ├── r2cf_32.c │ │ │ ├── r2cf_4.c │ │ │ ├── r2cf_5.c │ │ │ ├── r2cf_6.c │ │ │ ├── r2cf_64.c │ │ │ ├── r2cf_7.c │ │ │ ├── r2cf_8.c │ │ │ └── r2cf_9.c │ │ ├── r2cfII.h │ │ ├── r2r.c │ │ ├── r2r.h │ │ └── r2r │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── e01_8.c │ │ │ └── e10_8.c │ ├── simd │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── altivec │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── hc2cbdftv_10.c │ │ │ ├── hc2cbdftv_12.c │ │ │ ├── hc2cbdftv_16.c │ │ │ ├── hc2cbdftv_2.c │ │ │ ├── hc2cbdftv_20.c │ │ │ ├── hc2cbdftv_32.c │ │ │ ├── hc2cbdftv_4.c │ │ │ ├── hc2cbdftv_6.c │ │ │ ├── hc2cbdftv_8.c │ │ │ ├── hc2cfdftv_10.c │ │ │ ├── hc2cfdftv_12.c │ │ │ ├── hc2cfdftv_16.c │ │ │ ├── hc2cfdftv_2.c │ │ │ ├── hc2cfdftv_20.c │ │ │ ├── hc2cfdftv_32.c │ │ │ ├── hc2cfdftv_4.c │ │ │ ├── hc2cfdftv_6.c │ │ │ └── hc2cfdftv_8.c │ │ ├── avx-128-fma │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── hc2cbdftv_10.c │ │ │ ├── hc2cbdftv_12.c │ │ │ ├── hc2cbdftv_16.c │ │ │ ├── hc2cbdftv_2.c │ │ │ ├── hc2cbdftv_20.c │ │ │ ├── hc2cbdftv_32.c │ │ │ ├── hc2cbdftv_4.c │ │ │ ├── hc2cbdftv_6.c │ │ │ ├── hc2cbdftv_8.c │ │ │ ├── hc2cfdftv_10.c │ │ │ ├── hc2cfdftv_12.c │ │ │ ├── hc2cfdftv_16.c │ │ │ ├── hc2cfdftv_2.c │ │ │ ├── hc2cfdftv_20.c │ │ │ ├── hc2cfdftv_32.c │ │ │ ├── hc2cfdftv_4.c │ │ │ ├── hc2cfdftv_6.c │ │ │ └── hc2cfdftv_8.c │ │ ├── avx │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── hc2cbdftv_10.c │ │ │ ├── hc2cbdftv_12.c │ │ │ ├── hc2cbdftv_16.c │ │ │ ├── hc2cbdftv_2.c │ │ │ ├── hc2cbdftv_20.c │ │ │ ├── hc2cbdftv_32.c │ │ │ ├── hc2cbdftv_4.c │ │ │ ├── hc2cbdftv_6.c │ │ │ ├── hc2cbdftv_8.c │ │ │ ├── hc2cfdftv_10.c │ │ │ ├── hc2cfdftv_12.c │ │ │ ├── hc2cfdftv_16.c │ │ │ ├── hc2cfdftv_2.c │ │ │ ├── hc2cfdftv_20.c │ │ │ ├── hc2cfdftv_32.c │ │ │ ├── hc2cfdftv_4.c │ │ │ ├── hc2cfdftv_6.c │ │ │ └── hc2cfdftv_8.c │ │ ├── avx2-128 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── hc2cbdftv_10.c │ │ │ ├── hc2cbdftv_12.c │ │ │ ├── hc2cbdftv_16.c │ │ │ ├── hc2cbdftv_2.c │ │ │ ├── hc2cbdftv_20.c │ │ │ ├── hc2cbdftv_32.c │ │ │ ├── hc2cbdftv_4.c │ │ │ ├── hc2cbdftv_6.c │ │ │ ├── hc2cbdftv_8.c │ │ │ ├── hc2cfdftv_10.c │ │ │ ├── hc2cfdftv_12.c │ │ │ ├── hc2cfdftv_16.c │ │ │ ├── hc2cfdftv_2.c │ │ │ ├── hc2cfdftv_20.c │ │ │ ├── hc2cfdftv_32.c │ │ │ ├── hc2cfdftv_4.c │ │ │ ├── hc2cfdftv_6.c │ │ │ └── hc2cfdftv_8.c │ │ ├── avx2 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── hc2cbdftv_10.c │ │ │ ├── hc2cbdftv_12.c │ │ │ ├── hc2cbdftv_16.c │ │ │ ├── hc2cbdftv_2.c │ │ │ ├── hc2cbdftv_20.c │ │ │ ├── hc2cbdftv_32.c │ │ │ ├── hc2cbdftv_4.c │ │ │ ├── hc2cbdftv_6.c │ │ │ ├── hc2cbdftv_8.c │ │ │ ├── hc2cfdftv_10.c │ │ │ ├── hc2cfdftv_12.c │ │ │ ├── hc2cfdftv_16.c │ │ │ ├── hc2cfdftv_2.c │ │ │ ├── hc2cfdftv_20.c │ │ │ ├── hc2cfdftv_32.c │ │ │ ├── hc2cfdftv_4.c │ │ │ ├── hc2cfdftv_6.c │ │ │ └── hc2cfdftv_8.c │ │ ├── avx512 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── hc2cbdftv_10.c │ │ │ ├── hc2cbdftv_12.c │ │ │ ├── hc2cbdftv_16.c │ │ │ ├── hc2cbdftv_2.c │ │ │ ├── hc2cbdftv_20.c │ │ │ ├── hc2cbdftv_32.c │ │ │ ├── hc2cbdftv_4.c │ │ │ ├── hc2cbdftv_6.c │ │ │ ├── hc2cbdftv_8.c │ │ │ ├── hc2cfdftv_10.c │ │ │ ├── hc2cfdftv_12.c │ │ │ ├── hc2cfdftv_16.c │ │ │ ├── hc2cfdftv_2.c │ │ │ ├── hc2cfdftv_20.c │ │ │ ├── hc2cfdftv_32.c │ │ │ ├── hc2cfdftv_4.c │ │ │ ├── hc2cfdftv_6.c │ │ │ └── hc2cfdftv_8.c │ │ ├── codlist.mk │ │ ├── common │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── hc2cbdftv_10.c │ │ │ ├── hc2cbdftv_12.c │ │ │ ├── hc2cbdftv_16.c │ │ │ ├── hc2cbdftv_2.c │ │ │ ├── hc2cbdftv_20.c │ │ │ ├── hc2cbdftv_32.c │ │ │ ├── hc2cbdftv_4.c │ │ │ ├── hc2cbdftv_6.c │ │ │ ├── hc2cbdftv_8.c │ │ │ ├── hc2cfdftv_10.c │ │ │ ├── hc2cfdftv_12.c │ │ │ ├── hc2cfdftv_16.c │ │ │ ├── hc2cfdftv_2.c │ │ │ ├── hc2cfdftv_20.c │ │ │ ├── hc2cfdftv_32.c │ │ │ ├── hc2cfdftv_4.c │ │ │ ├── hc2cfdftv_6.c │ │ │ └── hc2cfdftv_8.c │ │ ├── generic-simd128 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── hc2cbdftv_10.c │ │ │ ├── hc2cbdftv_12.c │ │ │ ├── hc2cbdftv_16.c │ │ │ ├── hc2cbdftv_2.c │ │ │ ├── hc2cbdftv_20.c │ │ │ ├── hc2cbdftv_32.c │ │ │ ├── hc2cbdftv_4.c │ │ │ ├── hc2cbdftv_6.c │ │ │ ├── hc2cbdftv_8.c │ │ │ ├── hc2cfdftv_10.c │ │ │ ├── hc2cfdftv_12.c │ │ │ ├── hc2cfdftv_16.c │ │ │ ├── hc2cfdftv_2.c │ │ │ ├── hc2cfdftv_20.c │ │ │ ├── hc2cfdftv_32.c │ │ │ ├── hc2cfdftv_4.c │ │ │ ├── hc2cfdftv_6.c │ │ │ └── hc2cfdftv_8.c │ │ ├── generic-simd256 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── hc2cbdftv_10.c │ │ │ ├── hc2cbdftv_12.c │ │ │ ├── hc2cbdftv_16.c │ │ │ ├── hc2cbdftv_2.c │ │ │ ├── hc2cbdftv_20.c │ │ │ ├── hc2cbdftv_32.c │ │ │ ├── hc2cbdftv_4.c │ │ │ ├── hc2cbdftv_6.c │ │ │ ├── hc2cbdftv_8.c │ │ │ ├── hc2cfdftv_10.c │ │ │ ├── hc2cfdftv_12.c │ │ │ ├── hc2cfdftv_16.c │ │ │ ├── hc2cfdftv_2.c │ │ │ ├── hc2cfdftv_20.c │ │ │ ├── hc2cfdftv_32.c │ │ │ ├── hc2cfdftv_4.c │ │ │ ├── hc2cfdftv_6.c │ │ │ └── hc2cfdftv_8.c │ │ ├── hc2cbv.h │ │ ├── hc2cfv.h │ │ ├── kcvi │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── hc2cbdftv_10.c │ │ │ ├── hc2cbdftv_12.c │ │ │ ├── hc2cbdftv_16.c │ │ │ ├── hc2cbdftv_2.c │ │ │ ├── hc2cbdftv_20.c │ │ │ ├── hc2cbdftv_32.c │ │ │ ├── hc2cbdftv_4.c │ │ │ ├── hc2cbdftv_6.c │ │ │ ├── hc2cbdftv_8.c │ │ │ ├── hc2cfdftv_10.c │ │ │ ├── hc2cfdftv_12.c │ │ │ ├── hc2cfdftv_16.c │ │ │ ├── hc2cfdftv_2.c │ │ │ ├── hc2cfdftv_20.c │ │ │ ├── hc2cfdftv_32.c │ │ │ ├── hc2cfdftv_4.c │ │ │ ├── hc2cfdftv_6.c │ │ │ └── hc2cfdftv_8.c │ │ ├── neon │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── hc2cbdftv_10.c │ │ │ ├── hc2cbdftv_12.c │ │ │ ├── hc2cbdftv_16.c │ │ │ ├── hc2cbdftv_2.c │ │ │ ├── hc2cbdftv_20.c │ │ │ ├── hc2cbdftv_32.c │ │ │ ├── hc2cbdftv_4.c │ │ │ ├── hc2cbdftv_6.c │ │ │ ├── hc2cbdftv_8.c │ │ │ ├── hc2cfdftv_10.c │ │ │ ├── hc2cfdftv_12.c │ │ │ ├── hc2cfdftv_16.c │ │ │ ├── hc2cfdftv_2.c │ │ │ ├── hc2cfdftv_20.c │ │ │ ├── hc2cfdftv_32.c │ │ │ ├── hc2cfdftv_4.c │ │ │ ├── hc2cfdftv_6.c │ │ │ └── hc2cfdftv_8.c │ │ ├── simd.mk │ │ ├── sse2 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── hc2cbdftv_10.c │ │ │ ├── hc2cbdftv_12.c │ │ │ ├── hc2cbdftv_16.c │ │ │ ├── hc2cbdftv_2.c │ │ │ ├── hc2cbdftv_20.c │ │ │ ├── hc2cbdftv_32.c │ │ │ ├── hc2cbdftv_4.c │ │ │ ├── hc2cbdftv_6.c │ │ │ ├── hc2cbdftv_8.c │ │ │ ├── hc2cfdftv_10.c │ │ │ ├── hc2cfdftv_12.c │ │ │ ├── hc2cfdftv_16.c │ │ │ ├── hc2cfdftv_2.c │ │ │ ├── hc2cfdftv_20.c │ │ │ ├── hc2cfdftv_32.c │ │ │ ├── hc2cfdftv_4.c │ │ │ ├── hc2cfdftv_6.c │ │ │ └── hc2cfdftv_8.c │ │ └── vsx │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codlist.c │ │ │ ├── genus.c │ │ │ ├── hc2cbdftv_10.c │ │ │ ├── hc2cbdftv_12.c │ │ │ ├── hc2cbdftv_16.c │ │ │ ├── hc2cbdftv_2.c │ │ │ ├── hc2cbdftv_20.c │ │ │ ├── hc2cbdftv_32.c │ │ │ ├── hc2cbdftv_4.c │ │ │ ├── hc2cbdftv_6.c │ │ │ ├── hc2cbdftv_8.c │ │ │ ├── hc2cfdftv_10.c │ │ │ ├── hc2cfdftv_12.c │ │ │ ├── hc2cfdftv_16.c │ │ │ ├── hc2cfdftv_2.c │ │ │ ├── hc2cfdftv_20.c │ │ │ ├── hc2cfdftv_32.c │ │ │ ├── hc2cfdftv_4.c │ │ │ ├── hc2cfdftv_6.c │ │ │ └── hc2cfdftv_8.c │ ├── solve.c │ ├── solve2.c │ ├── vrank-geq1-rdft2.c │ ├── vrank-geq1.c │ └── vrank3-transpose.c │ ├── reodft │ ├── Makefile.am │ ├── Makefile.in │ ├── conf.c │ ├── redft00e-r2hc-pad.c │ ├── redft00e-r2hc.c │ ├── reodft.h │ ├── reodft00e-splitradix.c │ ├── reodft010e-r2hc.c │ ├── reodft11e-r2hc-odd.c │ ├── reodft11e-r2hc.c │ ├── reodft11e-radix2.c │ ├── rodft00e-r2hc-pad.c │ └── rodft00e-r2hc.c │ ├── simd-support │ ├── Makefile.am │ ├── Makefile.in │ ├── altivec.c │ ├── amd64-cpuid.h │ ├── avx-128-fma.c │ ├── avx.c │ ├── avx2.c │ ├── avx512.c │ ├── kcvi.c │ ├── neon.c │ ├── simd-altivec.h │ ├── simd-avx-128-fma.h │ ├── simd-avx.h │ ├── simd-avx2-128.h │ ├── simd-avx2.h │ ├── simd-avx512.h │ ├── simd-common.h │ ├── simd-generic128.h │ ├── simd-generic256.h │ ├── simd-kcvi.h │ ├── simd-neon.h │ ├── simd-sse2.h │ ├── simd-vsx.h │ ├── sse2.c │ ├── taint.c │ ├── vsx.c │ └── x86-cpuid.h │ ├── support │ ├── Makefile.am │ ├── Makefile.codelets │ ├── Makefile.in │ ├── addchain.c │ ├── codelet_prelude.dft │ ├── codelet_prelude.rdft │ └── twovers.sh │ ├── tests │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── bench.c │ ├── check.pl │ ├── fftw-bench.c │ ├── fftw-bench.h │ └── hook.c │ ├── threads │ ├── Makefile.am │ ├── Makefile.in │ ├── api.c │ ├── conf.c │ ├── ct.c │ ├── dft-vrank-geq1.c │ ├── f77api.c │ ├── f77funcs.h │ ├── hc2hc.c │ ├── openmp.c │ ├── rdft-vrank-geq1.c │ ├── threads.c │ ├── threads.h │ └── vrank-geq1-rdft2.c │ └── tools │ ├── Makefile.am │ ├── Makefile.in │ ├── fftw-wisdom-to-conf.1 │ ├── fftw-wisdom-to-conf.in │ ├── fftw-wisdom.c │ ├── fftw_wisdom.1.in │ └── fftwf-wisdom.1 ├── installer ├── LICENSE.txt ├── README.txt └── installer.iss.in ├── pkg └── com.obsproject.Studio.Plugin.waveform.metainfo.xml └── src ├── aligned_buffer.hpp ├── filter.hpp ├── filter_fma3.cpp ├── log.hpp ├── math_funcs.hpp ├── module.cpp ├── module.hpp ├── settings.hpp ├── simd_helpers.hpp ├── source.cpp ├── source.hpp ├── source_avx.cpp ├── source_avx2.cpp ├── source_generic.cpp └── waveform_config.hpp.in /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/README.md -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/THANKS -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/changelog.md -------------------------------------------------------------------------------- /cmake/package_common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/cmake/package_common.cmake -------------------------------------------------------------------------------- /cmake/package_deb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/cmake/package_deb.cmake -------------------------------------------------------------------------------- /cmake/package_macos.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/cmake/package_macos.cmake -------------------------------------------------------------------------------- /data/gradient.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/data/gradient.effect -------------------------------------------------------------------------------- /data/locale/en-US.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/data/locale/en-US.ini -------------------------------------------------------------------------------- /data/locale/it-IT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/data/locale/it-IT.ini -------------------------------------------------------------------------------- /data/locale/zh-CN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/data/locale/zh-CN.ini -------------------------------------------------------------------------------- /data/locale/zh-TW.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/data/locale/zh-TW.ini -------------------------------------------------------------------------------- /deps/fftw-3.3.10/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/AUTHORS -------------------------------------------------------------------------------- /deps/fftw-3.3.10/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/CMakeLists.txt -------------------------------------------------------------------------------- /deps/fftw-3.3.10/CONVENTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/CONVENTIONS -------------------------------------------------------------------------------- /deps/fftw-3.3.10/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/COPYING -------------------------------------------------------------------------------- /deps/fftw-3.3.10/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/COPYRIGHT -------------------------------------------------------------------------------- /deps/fftw-3.3.10/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/ChangeLog -------------------------------------------------------------------------------- /deps/fftw-3.3.10/FFTW3Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/FFTW3Config.cmake.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/INSTALL -------------------------------------------------------------------------------- /deps/fftw-3.3.10/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/Makefile.am -------------------------------------------------------------------------------- /deps/fftw-3.3.10/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/Makefile.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/NEWS -------------------------------------------------------------------------------- /deps/fftw-3.3.10/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/README -------------------------------------------------------------------------------- /deps/fftw-3.3.10/README-perfcnt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/README-perfcnt.md -------------------------------------------------------------------------------- /deps/fftw-3.3.10/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/TODO -------------------------------------------------------------------------------- /deps/fftw-3.3.10/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/aclocal.m4 -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/Makefile.am -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/Makefile.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/api.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/apiplan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/apiplan.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/configure.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/execute-dft-c2r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/execute-dft-c2r.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/execute-dft-r2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/execute-dft-r2c.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/execute-dft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/execute-dft.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/execute-r2r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/execute-r2r.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/execute-split-dft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/execute-split-dft.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/execute.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/export-wisdom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/export-wisdom.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/f03api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/f03api.sh -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/f77api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/f77api.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/f77funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/f77funcs.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/fftw3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/fftw3.f -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/fftw3.f03.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/fftw3.f03.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/fftw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/fftw3.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/fftw3l.f03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/fftw3l.f03 -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/fftw3q.f03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/fftw3q.f03 -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/flops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/flops.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/forget-wisdom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/forget-wisdom.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/genf03.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/genf03.pl -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/guru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/guru.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/guru64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/guru64.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/import-wisdom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/import-wisdom.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/malloc.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/map-r2r-kind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/map-r2r-kind.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/mapflags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/mapflags.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/mkprinter-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/mkprinter-file.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/mkprinter-str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/mkprinter-str.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/mktensor-iodims.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/mktensor-iodims.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/mktensor-iodims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/mktensor-iodims.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/mktensor-iodims64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/mktensor-iodims64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/mktensor-rowmajor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/mktensor-rowmajor.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-dft-1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-dft-1d.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-dft-2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-dft-2d.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-dft-3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-dft-3d.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-dft-c2r-1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-dft-c2r-1d.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-dft-c2r-2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-dft-c2r-2d.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-dft-c2r-3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-dft-c2r-3d.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-dft-c2r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-dft-c2r.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-dft-r2c-1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-dft-r2c-1d.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-dft-r2c-2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-dft-r2c-2d.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-dft-r2c-3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-dft-r2c-3d.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-dft-r2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-dft-r2c.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-dft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-dft.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-guru-dft-c2r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-guru-dft-c2r.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-guru-dft-c2r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-guru-dft-c2r.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-guru-dft-r2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-guru-dft-r2c.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-guru-dft-r2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-guru-dft-r2c.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-guru-dft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-guru-dft.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-guru-dft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-guru-dft.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-guru-r2r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-guru-r2r.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-guru-r2r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-guru-r2r.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-guru64-dft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-guru64-dft.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-guru64-r2r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-guru64-r2r.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-many-dft-c2r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-many-dft-c2r.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-many-dft-r2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-many-dft-r2c.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-many-dft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-many-dft.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-many-r2r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-many-r2r.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-r2r-1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-r2r-1d.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-r2r-2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-r2r-2d.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-r2r-3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-r2r-3d.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/plan-r2r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/plan-r2r.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/print-plan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/print-plan.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/rdft2-pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/rdft2-pad.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/the-planner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/the-planner.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/version.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/api/x77.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/api/x77.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/bootstrap.sh -------------------------------------------------------------------------------- /deps/fftw-3.3.10/cmake.config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/cmake.config.h.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/compile -------------------------------------------------------------------------------- /deps/fftw-3.3.10/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/config.guess -------------------------------------------------------------------------------- /deps/fftw-3.3.10/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/config.h.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/config.sub -------------------------------------------------------------------------------- /deps/fftw-3.3.10/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/configure -------------------------------------------------------------------------------- /deps/fftw-3.3.10/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/configure.ac -------------------------------------------------------------------------------- /deps/fftw-3.3.10/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/depcomp -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/Makefile.am -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/Makefile.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/bluestein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/bluestein.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/buffered.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/buffered.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/codelet-dft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/codelet-dft.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/conf.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/ct.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/ct.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/dft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/dft.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/dftw-direct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/dftw-direct.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/dftw-directsq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/dftw-directsq.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/dftw-generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/dftw-generic.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/dftw-genericbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/dftw-genericbuf.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/direct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/direct.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/generic.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/indirect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/indirect.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/kdft-dif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/kdft-dif.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/kdft-difsq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/kdft-difsq.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/kdft-dit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/kdft-dit.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/kdft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/kdft.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/nop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/nop.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/plan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/plan.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/problem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/problem.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/rader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/rader.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/rank-geq2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/rank-geq2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/scalar/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/scalar/Makefile.am -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/scalar/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/scalar/Makefile.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/scalar/f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/scalar/f.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/scalar/n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/scalar/n.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/scalar/n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/scalar/n.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/scalar/q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/scalar/q.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/scalar/t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/scalar/t.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/scalar/t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/scalar/t.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/Makefile.am -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/Makefile.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/codlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/codlist.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/genus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/genus.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_11.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_12.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_128.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_13.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_14.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_15.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_25.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_3.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_6.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_7.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1bv_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1bv_9.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_11.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_12.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_128.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_13.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_14.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_15.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_25.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_3.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_6.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_7.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n1fv_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n1fv_9.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2bv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2bv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2bv_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2bv_12.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2bv_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2bv_14.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2bv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2bv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2bv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2bv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2bv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2bv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2bv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2bv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2bv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2bv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2bv_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2bv_6.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2bv_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2bv_64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2bv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2bv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2fv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2fv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2fv_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2fv_12.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2fv_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2fv_14.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2fv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2fv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2fv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2fv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2fv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2fv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2fv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2fv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2fv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2fv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2fv_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2fv_6.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2fv_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2fv_64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2fv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2fv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2sv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2sv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2sv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2sv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2sv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2sv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2sv_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2sv_64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/n2sv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/n2sv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/q1bv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/q1bv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/q1bv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/q1bv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/q1bv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/q1bv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/q1bv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/q1bv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/q1fv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/q1fv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/q1fv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/q1fv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/q1fv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/q1fv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/q1fv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/q1fv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1buv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1buv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1buv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1buv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1buv_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1buv_3.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1buv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1buv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1buv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1buv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1buv_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1buv_6.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1buv_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1buv_7.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1buv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1buv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1buv_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1buv_9.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1bv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1bv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1bv_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1bv_12.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1bv_15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1bv_15.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1bv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1bv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1bv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1bv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1bv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1bv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1bv_25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1bv_25.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1bv_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1bv_3.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1bv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1bv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1bv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1bv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1bv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1bv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1bv_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1bv_6.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1bv_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1bv_64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1bv_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1bv_7.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1bv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1bv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1bv_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1bv_9.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fuv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fuv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fuv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fuv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fuv_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fuv_3.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fuv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fuv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fuv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fuv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fuv_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fuv_6.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fuv_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fuv_7.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fuv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fuv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fuv_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fuv_9.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fv_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fv_12.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fv_15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fv_15.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fv_25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fv_25.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fv_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fv_3.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fv_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fv_6.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fv_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fv_64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fv_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fv_7.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1fv_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1fv_9.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1sv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1sv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1sv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1sv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1sv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1sv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1sv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1sv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t1sv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t1sv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2bv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2bv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2bv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2bv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2bv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2bv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2bv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2bv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2bv_25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2bv_25.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2bv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2bv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2bv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2bv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2bv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2bv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2bv_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2bv_64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2bv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2bv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2fv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2fv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2fv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2fv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2fv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2fv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2fv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2fv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2fv_25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2fv_25.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2fv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2fv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2fv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2fv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2fv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2fv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2fv_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2fv_64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2fv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2fv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2sv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2sv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2sv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2sv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2sv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2sv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t2sv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t2sv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t3bv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t3bv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t3bv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t3bv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t3bv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t3bv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t3bv_25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t3bv_25.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t3bv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t3bv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t3bv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t3bv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t3bv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t3bv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t3bv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t3bv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t3fv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t3fv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t3fv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t3fv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t3fv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t3fv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t3fv_25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t3fv_25.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t3fv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t3fv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t3fv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t3fv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t3fv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t3fv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx/t3fv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx/t3fv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/codlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/codlist.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/genus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/genus.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_11.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_12.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_13.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_14.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_15.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_25.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_3.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_6.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_7.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1bv_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1bv_9.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_11.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_12.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_13.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_14.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_15.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_25.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_3.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_6.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_7.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n1fv_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n1fv_9.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2bv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2bv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2bv_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2bv_12.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2bv_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2bv_14.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2bv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2bv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2bv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2bv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2bv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2bv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2bv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2bv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2bv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2bv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2bv_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2bv_6.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2bv_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2bv_64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2bv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2bv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2fv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2fv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2fv_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2fv_12.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2fv_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2fv_14.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2fv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2fv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2fv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2fv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2fv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2fv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2fv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2fv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2fv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2fv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2fv_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2fv_6.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2fv_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2fv_64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2fv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2fv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2sv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2sv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2sv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2sv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2sv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2sv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2sv_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2sv_64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/n2sv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/n2sv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/q1bv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/q1bv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/q1bv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/q1bv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/q1bv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/q1bv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/q1bv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/q1bv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/q1fv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/q1fv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/q1fv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/q1fv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/q1fv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/q1fv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/q1fv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/q1fv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1buv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1buv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1buv_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1buv_3.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1buv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1buv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1buv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1buv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1buv_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1buv_6.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1buv_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1buv_7.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1buv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1buv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1buv_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1buv_9.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1bv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1bv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1bv_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1bv_12.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1bv_15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1bv_15.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1bv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1bv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1bv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1bv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1bv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1bv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1bv_25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1bv_25.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1bv_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1bv_3.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1bv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1bv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1bv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1bv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1bv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1bv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1bv_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1bv_6.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1bv_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1bv_64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1bv_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1bv_7.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1bv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1bv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1bv_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1bv_9.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fuv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fuv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fuv_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fuv_3.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fuv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fuv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fuv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fuv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fuv_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fuv_6.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fuv_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fuv_7.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fuv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fuv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fuv_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fuv_9.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fv_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fv_12.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fv_15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fv_15.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fv_25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fv_25.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fv_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fv_3.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fv_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fv_6.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fv_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fv_64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fv_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fv_7.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1fv_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1fv_9.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1sv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1sv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1sv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1sv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1sv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1sv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1sv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1sv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t1sv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t1sv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2bv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2bv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2bv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2bv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2bv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2bv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2bv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2bv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2bv_25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2bv_25.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2bv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2bv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2bv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2bv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2bv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2bv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2bv_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2bv_64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2bv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2bv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2fv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2fv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2fv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2fv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2fv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2fv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2fv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2fv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2fv_25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2fv_25.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2fv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2fv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2fv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2fv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2fv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2fv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2fv_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2fv_64.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2fv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2fv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2sv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2sv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2sv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2sv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2sv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2sv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t2sv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t2sv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t3bv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t3bv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t3bv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t3bv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t3bv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t3bv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t3bv_25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t3bv_25.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t3bv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t3bv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t3bv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t3bv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t3bv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t3bv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t3bv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t3bv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t3fv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t3fv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t3fv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t3fv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t3fv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t3fv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t3fv_25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t3fv_25.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t3fv_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t3fv_32.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t3fv_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t3fv_4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t3fv_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t3fv_5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx2/t3fv_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx2/t3fv_8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/avx512/genus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/avx512/genus.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/codlist.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/codlist.mk -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/common/genus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/common/genus.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/kcvi/codlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/kcvi/codlist.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/kcvi/genus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/kcvi/genus.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/kcvi/n1bv_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/kcvi/n1bv_10.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/kcvi/n1bv_11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/kcvi/n1bv_11.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/kcvi/n1bv_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/kcvi/n1bv_12.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/kcvi/n1bv_13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/kcvi/n1bv_13.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/kcvi/n1bv_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/kcvi/n1bv_14.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/kcvi/n1bv_15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/kcvi/n1bv_15.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/kcvi/n1bv_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/kcvi/n1bv_16.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/kcvi/n1bv_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/kcvi/n1bv_2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/kcvi/n1bv_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/kcvi/n1bv_20.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/n1b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/n1b.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/n1f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/n1f.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/n2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/n2b.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/n2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/n2f.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/n2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/n2s.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/q1b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/q1b.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/q1f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/q1f.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/simd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/simd.mk -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/t1b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/t1b.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/t1bu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/t1bu.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/t1f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/t1f.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/t1fu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/t1fu.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/t2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/t2b.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/t2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/t2f.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/t3b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/t3b.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/t3f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/t3f.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/ts.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/simd/vsx/genus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/simd/vsx/genus.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/solve.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/vrank-geq1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/vrank-geq1.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/dft/zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/dft/zero.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/FAQ/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/FAQ/Makefile.am -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/FAQ/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/FAQ/Makefile.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/FAQ/bfnnconv.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/FAQ/bfnnconv.pl -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/FAQ/html.refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/FAQ/html.refs -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/FAQ/m-ascii.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/FAQ/m-ascii.pl -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/FAQ/m-html.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/FAQ/m-html.pl -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/FAQ/m-info.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/FAQ/m-info.pl -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/FAQ/m-lout.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/FAQ/m-lout.pl -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/FAQ/m-post.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/FAQ/m-post.pl -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/Makefile.am -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/Makefile.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/cindex.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/cindex.texi -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/equation-dft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/equation-dft.png -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/equation-dht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/equation-dht.png -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/f77_wisdom.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/f77_wisdom.f -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/fftw3.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/fftw3.info -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/fftw3.info-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/fftw3.info-1 -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/fftw3.info-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/fftw3.info-2 -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/fftw3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/fftw3.pdf -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/fftw3.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/fftw3.texi -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/findex.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/findex.texi -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/html/Wisdom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/html/Wisdom.html -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/html/index.html -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/install.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/install.texi -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/intro.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/intro.texi -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/license.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/license.texi -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/mdate-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/mdate-sh -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/mpi.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/mpi.texi -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/other.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/other.texi -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/reference.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/reference.texi -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/rfftwnd.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/rfftwnd.eps -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/rfftwnd.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/rfftwnd.fig -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/rfftwnd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/rfftwnd.pdf -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/stamp-vti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/stamp-vti -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/texinfo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/texinfo.tex -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/threads.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/threads.texi -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/tutorial.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/tutorial.texi -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/upgrading.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/upgrading.texi -------------------------------------------------------------------------------- /deps/fftw-3.3.10/doc/version.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/doc/version.texi -------------------------------------------------------------------------------- /deps/fftw-3.3.10/fftw.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/fftw.pc.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/Makefile.am -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/Makefile.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/algsimp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/algsimp.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/algsimp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/algsimp.mli -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/annotate.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/annotate.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/annotate.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/annotate.mli -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/assoctable.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/assoctable.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/c.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/c.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/c.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/c.mli -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/complex.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/complex.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/complex.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/complex.mli -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/conv.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/conv.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/conv.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/conv.mli -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/dag.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/dag.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/dag.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/dag.mli -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/expr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/expr.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/expr.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/expr.mli -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/fft.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/fft.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/fft.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/fft.mli -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/gen_hc2c.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/gen_hc2c.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/gen_hc2hc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/gen_hc2hc.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/gen_mdct.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/gen_mdct.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/gen_notw.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/gen_notw.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/gen_notw_c.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/gen_notw_c.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/gen_r2cb.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/gen_r2cb.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/gen_r2cf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/gen_r2cf.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/gen_r2r.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/gen_r2r.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/gen_twidsq.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/gen_twidsq.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/genutil.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/genutil.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/littlesimp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/littlesimp.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/magic.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/magic.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/monads.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/monads.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/number.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/number.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/number.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/number.mli -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/oracle.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/oracle.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/oracle.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/oracle.mli -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/schedule.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/schedule.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/schedule.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/schedule.mli -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/simd.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/simd.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/simd.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/simd.mli -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/simdmagic.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/simdmagic.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/to_alist.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/to_alist.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/to_alist.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/to_alist.mli -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/trig.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/trig.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/trig.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/trig.mli -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/twiddle.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/twiddle.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/twiddle.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/twiddle.mli -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/unique.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/unique.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/unique.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/unique.mli -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/util.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/util.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/util.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/util.mli -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/variable.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/variable.ml -------------------------------------------------------------------------------- /deps/fftw-3.3.10/genfft/variable.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/genfft/variable.mli -------------------------------------------------------------------------------- /deps/fftw-3.3.10/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/install-sh -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/Makefile.am -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/Makefile.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/align.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/alloc.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/assert.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/awake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/awake.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/buffered.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/buffered.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/cpy1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/cpy1d.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/cpy2d-pair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/cpy2d-pair.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/cpy2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/cpy2d.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/ct.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/cycle.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/debug.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/hash.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/iabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/iabs.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/ifftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/ifftw.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/kalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/kalloc.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/md5-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/md5-1.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/md5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/minmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/minmax.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/ops.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/pickdim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/pickdim.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/plan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/plan.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/planner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/planner.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/primes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/primes.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/print.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/problem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/problem.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/rader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/rader.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/scan.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/solver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/solver.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/solvtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/solvtab.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/stride.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/stride.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/tensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/tensor.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/tensor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/tensor1.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/tensor2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/tensor2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/tensor3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/tensor3.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/tensor4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/tensor4.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/tensor5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/tensor5.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/tensor7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/tensor7.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/tensor8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/tensor8.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/tensor9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/tensor9.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/tile2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/tile2d.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/timer.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/transpose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/transpose.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/trig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/trig.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/kernel/twiddle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/kernel/twiddle.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/allocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/allocate.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/aset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/aset.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/bench.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/can-do.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/can-do.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/caset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/caset.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/dotens2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/dotens2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/info.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/main.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/mflops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/mflops.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/mp.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/ovtpvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/ovtpvt.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/pow2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/pow2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/problem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/problem.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/report.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/speed.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/tensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/tensor.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/timer.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/useropt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/useropt.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/util.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/verify.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/verify.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/libbench2/zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/libbench2/zero.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/ltmain.sh -------------------------------------------------------------------------------- /deps/fftw-3.3.10/m4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/m4/Makefile.am -------------------------------------------------------------------------------- /deps/fftw-3.3.10/m4/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/m4/Makefile.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/m4/acx_mpi.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/m4/acx_mpi.m4 -------------------------------------------------------------------------------- /deps/fftw-3.3.10/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /deps/fftw-3.3.10/m4/ax_cc_maxopt.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/m4/ax_cc_maxopt.m4 -------------------------------------------------------------------------------- /deps/fftw-3.3.10/m4/ax_gcc_version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/m4/ax_gcc_version.m4 -------------------------------------------------------------------------------- /deps/fftw-3.3.10/m4/ax_openmp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/m4/ax_openmp.m4 -------------------------------------------------------------------------------- /deps/fftw-3.3.10/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/m4/libtool.m4 -------------------------------------------------------------------------------- /deps/fftw-3.3.10/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/m4/ltoptions.m4 -------------------------------------------------------------------------------- /deps/fftw-3.3.10/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/m4/ltsugar.m4 -------------------------------------------------------------------------------- /deps/fftw-3.3.10/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/m4/ltversion.m4 -------------------------------------------------------------------------------- /deps/fftw-3.3.10/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /deps/fftw-3.3.10/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/missing -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/Makefile.am -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/Makefile.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/any-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/any-true.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/api.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/block.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/choose-radix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/choose-radix.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/conf.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/dft-problem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/dft-problem.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/dft-rank-geq2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/dft-rank-geq2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/dft-rank1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/dft-rank1.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/dft-serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/dft-serial.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/dft-solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/dft-solve.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/dtensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/dtensor.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/f03-wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/f03-wrap.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/f03-wrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/f03-wrap.sh -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/f03api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/f03api.sh -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/fftw3-mpi.f03.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/fftw3-mpi.f03.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/fftw3-mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/fftw3-mpi.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/genf03-wrap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/genf03-wrap.pl -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/ifftw-mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/ifftw-mpi.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/mpi-bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/mpi-bench.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/mpi-dft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/mpi-dft.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/mpi-rdft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/mpi-rdft.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/mpi-rdft2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/mpi-rdft2.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/mpi-transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/mpi-transpose.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/rdft-problem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/rdft-problem.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/rdft-rank-geq2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/rdft-rank-geq2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/rdft-serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/rdft-serial.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/rdft-solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/rdft-solve.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/rdft2-problem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/rdft2-problem.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/rdft2-serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/rdft2-serial.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/rdft2-solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/rdft2-solve.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/rearrange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/rearrange.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/testsched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/testsched.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/mpi/wisdom-api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/mpi/wisdom-api.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/Makefile.am -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/Makefile.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/buffered.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/buffered.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/buffered2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/buffered2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/codelet-rdft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/codelet-rdft.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/conf.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/ct-hc2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/ct-hc2c.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/ct-hc2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/ct-hc2c.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/dft-r2hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/dft-r2hc.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/dht-r2hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/dht-r2hc.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/dht-rader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/dht-rader.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/direct-r2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/direct-r2c.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/direct-r2r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/direct-r2r.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/direct2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/direct2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/generic.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/hc2hc-direct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/hc2hc-direct.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/hc2hc-generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/hc2hc-generic.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/hc2hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/hc2hc.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/hc2hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/hc2hc.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/indirect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/indirect.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/khc2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/khc2c.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/khc2hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/khc2hc.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/kr2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/kr2c.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/kr2r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/kr2r.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/nop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/nop.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/nop2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/nop2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/plan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/plan.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/plan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/plan2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/problem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/problem.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/problem2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/problem2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/rank-geq2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/rank-geq2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/rank0-rdft2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/rank0-rdft2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/rank0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/rank0.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/rdft-dht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/rdft-dht.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/rdft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/rdft.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/rdft2-rdft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/rdft2-rdft.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/rdft2-strides.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/rdft2-strides.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/scalar/hb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/scalar/hb.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/scalar/hc2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/scalar/hc2c.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/scalar/hc2cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/scalar/hc2cb.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/scalar/hc2cf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/scalar/hc2cf.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/scalar/hf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/scalar/hf.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/scalar/hfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/scalar/hfb.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/scalar/r2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/scalar/r2c.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/scalar/r2cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/scalar/r2cb.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/scalar/r2cf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/scalar/r2cf.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/scalar/r2cfII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/scalar/r2cfII.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/scalar/r2r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/scalar/r2r.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/scalar/r2r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/scalar/r2r.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/simd/codlist.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/simd/codlist.mk -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/simd/hc2cbv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/simd/hc2cbv.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/simd/hc2cfv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/simd/hc2cfv.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/simd/simd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/simd/simd.mk -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/solve.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/solve2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/solve2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/rdft/vrank-geq1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/rdft/vrank-geq1.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/reodft/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/reodft/Makefile.am -------------------------------------------------------------------------------- /deps/fftw-3.3.10/reodft/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/reodft/Makefile.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/reodft/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/reodft/conf.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/reodft/reodft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/reodft/reodft.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/simd-support/avx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/simd-support/avx.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/simd-support/avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/simd-support/avx2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/simd-support/kcvi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/simd-support/kcvi.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/simd-support/neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/simd-support/neon.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/simd-support/sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/simd-support/sse2.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/simd-support/taint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/simd-support/taint.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/simd-support/vsx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/simd-support/vsx.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/support/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/support/Makefile.am -------------------------------------------------------------------------------- /deps/fftw-3.3.10/support/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/support/Makefile.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/support/addchain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/support/addchain.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/support/twovers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/support/twovers.sh -------------------------------------------------------------------------------- /deps/fftw-3.3.10/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/tests/Makefile.am -------------------------------------------------------------------------------- /deps/fftw-3.3.10/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/tests/Makefile.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/tests/README -------------------------------------------------------------------------------- /deps/fftw-3.3.10/tests/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/tests/bench.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/tests/check.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/tests/check.pl -------------------------------------------------------------------------------- /deps/fftw-3.3.10/tests/fftw-bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/tests/fftw-bench.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/tests/fftw-bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/tests/fftw-bench.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/tests/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/tests/hook.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/threads/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/threads/Makefile.am -------------------------------------------------------------------------------- /deps/fftw-3.3.10/threads/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/threads/Makefile.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/threads/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/threads/api.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/threads/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/threads/conf.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/threads/ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/threads/ct.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/threads/f77api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/threads/f77api.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/threads/f77funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/threads/f77funcs.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/threads/hc2hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/threads/hc2hc.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/threads/openmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/threads/openmp.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/threads/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/threads/threads.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/threads/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/threads/threads.h -------------------------------------------------------------------------------- /deps/fftw-3.3.10/tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/tools/Makefile.am -------------------------------------------------------------------------------- /deps/fftw-3.3.10/tools/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/tools/Makefile.in -------------------------------------------------------------------------------- /deps/fftw-3.3.10/tools/fftw-wisdom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/tools/fftw-wisdom.c -------------------------------------------------------------------------------- /deps/fftw-3.3.10/tools/fftwf-wisdom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/deps/fftw-3.3.10/tools/fftwf-wisdom.1 -------------------------------------------------------------------------------- /installer/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/installer/LICENSE.txt -------------------------------------------------------------------------------- /installer/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/installer/README.txt -------------------------------------------------------------------------------- /installer/installer.iss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/installer/installer.iss.in -------------------------------------------------------------------------------- /src/aligned_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/src/aligned_buffer.hpp -------------------------------------------------------------------------------- /src/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/src/filter.hpp -------------------------------------------------------------------------------- /src/filter_fma3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/src/filter_fma3.cpp -------------------------------------------------------------------------------- /src/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/src/log.hpp -------------------------------------------------------------------------------- /src/math_funcs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/src/math_funcs.hpp -------------------------------------------------------------------------------- /src/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/src/module.cpp -------------------------------------------------------------------------------- /src/module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/src/module.hpp -------------------------------------------------------------------------------- /src/settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/src/settings.hpp -------------------------------------------------------------------------------- /src/simd_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/src/simd_helpers.hpp -------------------------------------------------------------------------------- /src/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/src/source.cpp -------------------------------------------------------------------------------- /src/source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/src/source.hpp -------------------------------------------------------------------------------- /src/source_avx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/src/source_avx.cpp -------------------------------------------------------------------------------- /src/source_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/src/source_avx2.cpp -------------------------------------------------------------------------------- /src/source_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/src/source_generic.cpp -------------------------------------------------------------------------------- /src/waveform_config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phandasm/waveform/HEAD/src/waveform_config.hpp.in --------------------------------------------------------------------------------