├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile.lapack ├── Makefile.linux ├── Makefile.windows ├── Math.dyalog ├── README.md ├── fftw ├── AUTHORS ├── CONVENTIONS ├── COPYING ├── COPYRIGHT ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── TODO ├── aclocal.m4 ├── api │ ├── Makefile.am │ ├── Makefile.in │ ├── api.h │ ├── apiplan.c │ ├── configure.c │ ├── dyalog.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 ├── 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-nonportable.c │ ├── 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 └── lapack ├── BLAS ├── CMakeLists.txt ├── SRC │ ├── CMakeLists.txt │ ├── Makefile │ ├── caxpy.f │ ├── ccopy.f │ ├── cdotc.f │ ├── cdotu.f │ ├── cgbmv.f │ ├── cgemm.f │ ├── cgemv.f │ ├── cgerc.f │ ├── cgeru.f │ ├── chbmv.f │ ├── chemm.f │ ├── chemv.f │ ├── cher.f │ ├── cher2.f │ ├── cher2k.f │ ├── cherk.f │ ├── chpmv.f │ ├── chpr.f │ ├── chpr2.f │ ├── crotg.f │ ├── cscal.f │ ├── csrot.f │ ├── csscal.f │ ├── cswap.f │ ├── csymm.f │ ├── csyr2k.f │ ├── csyrk.f │ ├── ctbmv.f │ ├── ctbsv.f │ ├── ctpmv.f │ ├── ctpsv.f │ ├── ctrmm.f │ ├── ctrmv.f │ ├── ctrsm.f │ ├── ctrsv.f │ ├── dasum.f │ ├── daxpy.f │ ├── dcabs1.f │ ├── dcopy.f │ ├── ddot.f │ ├── dgbmv.f │ ├── dgemm.f │ ├── dgemv.f │ ├── dger.f │ ├── dnrm2.f │ ├── drot.f │ ├── drotg.f │ ├── drotm.f │ ├── drotmg.f │ ├── dsbmv.f │ ├── dscal.f │ ├── dsdot.f │ ├── dspmv.f │ ├── dspr.f │ ├── dspr2.f │ ├── dswap.f │ ├── dsymm.f │ ├── dsymv.f │ ├── dsyr.f │ ├── dsyr2.f │ ├── dsyr2k.f │ ├── dsyrk.f │ ├── dtbmv.f │ ├── dtbsv.f │ ├── dtpmv.f │ ├── dtpsv.f │ ├── dtrmm.f │ ├── dtrmv.f │ ├── dtrsm.f │ ├── dtrsv.f │ ├── dzasum.f │ ├── dznrm2.f │ ├── icamax.f │ ├── idamax.f │ ├── isamax.f │ ├── izamax.f │ ├── lsame.f │ ├── sasum.f │ ├── saxpy.f │ ├── scabs1.f │ ├── scasum.f │ ├── scnrm2.f │ ├── scopy.f │ ├── sdot.f │ ├── sdsdot.f │ ├── sgbmv.f │ ├── sgemm.f │ ├── sgemv.f │ ├── sger.f │ ├── snrm2.f │ ├── srot.f │ ├── srotg.f │ ├── srotm.f │ ├── srotmg.f │ ├── ssbmv.f │ ├── sscal.f │ ├── sspmv.f │ ├── sspr.f │ ├── sspr2.f │ ├── sswap.f │ ├── ssymm.f │ ├── ssymv.f │ ├── ssyr.f │ ├── ssyr2.f │ ├── ssyr2k.f │ ├── ssyrk.f │ ├── stbmv.f │ ├── stbsv.f │ ├── stpmv.f │ ├── stpsv.f │ ├── strmm.f │ ├── strmv.f │ ├── strsm.f │ ├── strsv.f │ ├── xerbla.f │ ├── xerbla_array.f │ ├── zaxpy.f │ ├── zcopy.f │ ├── zdotc.f │ ├── zdotu.f │ ├── zdrot.f │ ├── zdscal.f │ ├── zgbmv.f │ ├── zgemm.f │ ├── zgemv.f │ ├── zgerc.f │ ├── zgeru.f │ ├── zhbmv.f │ ├── zhemm.f │ ├── zhemv.f │ ├── zher.f │ ├── zher2.f │ ├── zher2k.f │ ├── zherk.f │ ├── zhpmv.f │ ├── zhpr.f │ ├── zhpr2.f │ ├── zrotg.f │ ├── zscal.f │ ├── zswap.f │ ├── zsymm.f │ ├── zsyr2k.f │ ├── zsyrk.f │ ├── ztbmv.f │ ├── ztbsv.f │ ├── ztpmv.f │ ├── ztpsv.f │ ├── ztrmm.f │ ├── ztrmv.f │ ├── ztrsm.f │ └── ztrsv.f ├── TESTING │ ├── CMakeLists.txt │ ├── Makeblat1 │ ├── Makeblat2 │ ├── Makeblat3 │ ├── cblat1.f │ ├── cblat2.f │ ├── cblat3.f │ ├── dblat1.f │ ├── dblat2.f │ ├── dblat3.f │ ├── sblat1.f │ ├── sblat2.f │ ├── sblat3.f │ ├── zblat1.f │ ├── zblat2.f │ └── zblat3.f ├── blas.pc.in ├── cblat2.in ├── cblat3.in ├── dblat2.in ├── dblat3.in ├── sblat2.in ├── sblat3.in ├── zblat2.in └── zblat3.in ├── CBLAS ├── CMakeLists.txt ├── Makefile ├── Makefile.in ├── README ├── cblas.pc.in ├── cmake │ ├── cblas-config-build.cmake.in │ ├── cblas-config-install.cmake.in │ └── cblas-config-version.cmake.in ├── examples │ ├── CMakeLists.txt │ ├── Makefile │ ├── cblas_example1.c │ └── cblas_example2.c ├── include │ ├── CMakeLists.txt │ ├── cblas.h │ ├── cblas_f77.h │ ├── cblas_mangling_with_flags.h │ └── cblas_test.h ├── src │ ├── CMakeLists.txt │ ├── Makefile │ ├── cblas_caxpy.c │ ├── cblas_ccopy.c │ ├── cblas_cdotc_sub.c │ ├── cblas_cdotu_sub.c │ ├── cblas_cgbmv.c │ ├── cblas_cgemm.c │ ├── cblas_cgemv.c │ ├── cblas_cgerc.c │ ├── cblas_cgeru.c │ ├── cblas_chbmv.c │ ├── cblas_chemm.c │ ├── cblas_chemv.c │ ├── cblas_cher.c │ ├── cblas_cher2.c │ ├── cblas_cher2k.c │ ├── cblas_cherk.c │ ├── cblas_chpmv.c │ ├── cblas_chpr.c │ ├── cblas_chpr2.c │ ├── cblas_cscal.c │ ├── cblas_csscal.c │ ├── cblas_cswap.c │ ├── cblas_csymm.c │ ├── cblas_csyr2k.c │ ├── cblas_csyrk.c │ ├── cblas_ctbmv.c │ ├── cblas_ctbsv.c │ ├── cblas_ctpmv.c │ ├── cblas_ctpsv.c │ ├── cblas_ctrmm.c │ ├── cblas_ctrmv.c │ ├── cblas_ctrsm.c │ ├── cblas_ctrsv.c │ ├── cblas_dasum.c │ ├── cblas_daxpy.c │ ├── cblas_dcopy.c │ ├── cblas_ddot.c │ ├── cblas_dgbmv.c │ ├── cblas_dgemm.c │ ├── cblas_dgemv.c │ ├── cblas_dger.c │ ├── cblas_dnrm2.c │ ├── cblas_drot.c │ ├── cblas_drotg.c │ ├── cblas_drotm.c │ ├── cblas_drotmg.c │ ├── cblas_dsbmv.c │ ├── cblas_dscal.c │ ├── cblas_dsdot.c │ ├── cblas_dspmv.c │ ├── cblas_dspr.c │ ├── cblas_dspr2.c │ ├── cblas_dswap.c │ ├── cblas_dsymm.c │ ├── cblas_dsymv.c │ ├── cblas_dsyr.c │ ├── cblas_dsyr2.c │ ├── cblas_dsyr2k.c │ ├── cblas_dsyrk.c │ ├── cblas_dtbmv.c │ ├── cblas_dtbsv.c │ ├── cblas_dtpmv.c │ ├── cblas_dtpsv.c │ ├── cblas_dtrmm.c │ ├── cblas_dtrmv.c │ ├── cblas_dtrsm.c │ ├── cblas_dtrsv.c │ ├── cblas_dzasum.c │ ├── cblas_dznrm2.c │ ├── cblas_globals.c │ ├── cblas_icamax.c │ ├── cblas_idamax.c │ ├── cblas_isamax.c │ ├── cblas_izamax.c │ ├── cblas_sasum.c │ ├── cblas_saxpy.c │ ├── cblas_scasum.c │ ├── cblas_scnrm2.c │ ├── cblas_scopy.c │ ├── cblas_sdot.c │ ├── cblas_sdsdot.c │ ├── cblas_sgbmv.c │ ├── cblas_sgemm.c │ ├── cblas_sgemv.c │ ├── cblas_sger.c │ ├── cblas_snrm2.c │ ├── cblas_srot.c │ ├── cblas_srotg.c │ ├── cblas_srotm.c │ ├── cblas_srotmg.c │ ├── cblas_ssbmv.c │ ├── cblas_sscal.c │ ├── cblas_sspmv.c │ ├── cblas_sspr.c │ ├── cblas_sspr2.c │ ├── cblas_sswap.c │ ├── cblas_ssymm.c │ ├── cblas_ssymv.c │ ├── cblas_ssyr.c │ ├── cblas_ssyr2.c │ ├── cblas_ssyr2k.c │ ├── cblas_ssyrk.c │ ├── cblas_stbmv.c │ ├── cblas_stbsv.c │ ├── cblas_stpmv.c │ ├── cblas_stpsv.c │ ├── cblas_strmm.c │ ├── cblas_strmv.c │ ├── cblas_strsm.c │ ├── cblas_strsv.c │ ├── cblas_xerbla.c │ ├── cblas_zaxpy.c │ ├── cblas_zcopy.c │ ├── cblas_zdotc_sub.c │ ├── cblas_zdotu_sub.c │ ├── cblas_zdscal.c │ ├── cblas_zgbmv.c │ ├── cblas_zgemm.c │ ├── cblas_zgemv.c │ ├── cblas_zgerc.c │ ├── cblas_zgeru.c │ ├── cblas_zhbmv.c │ ├── cblas_zhemm.c │ ├── cblas_zhemv.c │ ├── cblas_zher.c │ ├── cblas_zher2.c │ ├── cblas_zher2k.c │ ├── cblas_zherk.c │ ├── cblas_zhpmv.c │ ├── cblas_zhpr.c │ ├── cblas_zhpr2.c │ ├── cblas_zscal.c │ ├── cblas_zswap.c │ ├── cblas_zsymm.c │ ├── cblas_zsyr2k.c │ ├── cblas_zsyrk.c │ ├── cblas_ztbmv.c │ ├── cblas_ztbsv.c │ ├── cblas_ztpmv.c │ ├── cblas_ztpsv.c │ ├── cblas_ztrmm.c │ ├── cblas_ztrmv.c │ ├── cblas_ztrsm.c │ ├── cblas_ztrsv.c │ ├── cdotcsub.f │ ├── cdotusub.f │ ├── dasumsub.f │ ├── ddotsub.f │ ├── dnrm2sub.f │ ├── dsdotsub.f │ ├── dzasumsub.f │ ├── dznrm2sub.f │ ├── icamaxsub.f │ ├── idamaxsub.f │ ├── isamaxsub.f │ ├── izamaxsub.f │ ├── sasumsub.f │ ├── scasumsub.f │ ├── scnrm2sub.f │ ├── sdotsub.f │ ├── sdsdotsub.f │ ├── snrm2sub.f │ ├── xerbla.c │ ├── zdotcsub.f │ └── zdotusub.f └── testing │ ├── CMakeLists.txt │ ├── Makefile │ ├── auxiliary.c │ ├── c_c2chke.c │ ├── c_c3chke.c │ ├── c_cblas1.c │ ├── c_cblas2.c │ ├── c_cblas3.c │ ├── c_cblat1.f │ ├── c_cblat2.f │ ├── c_cblat3.f │ ├── c_d2chke.c │ ├── c_d3chke.c │ ├── c_dblas1.c │ ├── c_dblas2.c │ ├── c_dblas3.c │ ├── c_dblat1.f │ ├── c_dblat2.f │ ├── c_dblat3.f │ ├── c_s2chke.c │ ├── c_s3chke.c │ ├── c_sblas1.c │ ├── c_sblas2.c │ ├── c_sblas3.c │ ├── c_sblat1.f │ ├── c_sblat2.f │ ├── c_sblat3.f │ ├── c_xerbla.c │ ├── c_z2chke.c │ ├── c_z3chke.c │ ├── c_zblas1.c │ ├── c_zblas2.c │ ├── c_zblas3.c │ ├── c_zblat1.f │ ├── c_zblat2.f │ ├── c_zblat3.f │ ├── cin2 │ ├── cin3 │ ├── din2 │ ├── din3 │ ├── sin2 │ ├── sin3 │ ├── zin2 │ └── zin3 ├── CMAKE ├── CheckFortranTypeSizes.cmake ├── CheckLAPACKCompilerFlags.cmake ├── CheckTimeFunction.cmake ├── FortranMangling.cmake ├── lapack-config-build.cmake.in └── lapack-config-install.cmake.in ├── CMakeLists.txt ├── CTestConfig.cmake ├── CTestCustom.cmake.in ├── DOCS ├── Doxyfile ├── Doxyfile_man ├── groups-usr.dox ├── lapack.png ├── lapacke.pdf ├── lawn81.tex └── org2.ps ├── INSTALL ├── CMakeLists.txt ├── LAPACK_version.f ├── Makefile ├── dlamch.f ├── dlamchf77.f ├── dlamchtst.f ├── dsecnd_EXT_ETIME.f ├── dsecnd_EXT_ETIME_.f ├── dsecnd_INT_CPU_TIME.f ├── dsecnd_INT_ETIME.f ├── dsecnd_NONE.f ├── dsecndtst.f ├── ilaver.f ├── lsame.f ├── lsametst.f ├── make.inc.ALPHA ├── make.inc.HPPA ├── make.inc.IRIX64 ├── make.inc.O2K ├── make.inc.SGI5 ├── make.inc.SUN4 ├── make.inc.SUN4SOL2 ├── make.inc.XLF ├── make.inc.gfortran ├── make.inc.gfortran_debug ├── make.inc.ifort ├── make.inc.pgf95 ├── make.inc.pghpf ├── second_EXT_ETIME.f ├── second_EXT_ETIME_.f ├── second_INT_CPU_TIME.f ├── second_INT_ETIME.f ├── second_NONE.f ├── secondtst.f ├── slamch.f ├── slamchf77.f ├── slamchtst.f └── tstiee.f ├── LAPACKE ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README ├── cmake │ ├── lapacke-config-build.cmake.in │ ├── lapacke-config-install.cmake.in │ └── lapacke-config-version.cmake.in ├── example │ ├── CMakeLists.txt │ ├── Makefile │ ├── example_DGELS_colmajor.c │ ├── example_DGELS_rowmajor.c │ ├── example_DGESV_colmajor.c │ ├── example_DGESV_rowmajor.c │ ├── example_user.c │ ├── lapacke_example_aux.c │ └── lapacke_example_aux.h ├── include │ ├── CMakeLists.txt │ ├── lapacke.h │ ├── lapacke_config.h │ ├── lapacke_mangling_with_flags.h │ └── lapacke_utils.h ├── lapacke.pc.in ├── mangling │ ├── CMakeLists.txt │ ├── Cintface.c │ └── Fintface.f ├── src │ ├── CMakeLists.txt │ ├── Makefile │ ├── lapacke_cbbcsd.c │ ├── lapacke_cbbcsd_work.c │ ├── lapacke_cbdsqr.c │ ├── lapacke_cbdsqr_work.c │ ├── lapacke_cgbbrd.c │ ├── lapacke_cgbbrd_work.c │ ├── lapacke_cgbcon.c │ ├── lapacke_cgbcon_work.c │ ├── lapacke_cgbequ.c │ ├── lapacke_cgbequ_work.c │ ├── lapacke_cgbequb.c │ ├── lapacke_cgbequb_work.c │ ├── lapacke_cgbrfs.c │ ├── lapacke_cgbrfs_work.c │ ├── lapacke_cgbrfsx.c │ ├── lapacke_cgbrfsx_work.c │ ├── lapacke_cgbsv.c │ ├── lapacke_cgbsv_work.c │ ├── lapacke_cgbsvx.c │ ├── lapacke_cgbsvx_work.c │ ├── lapacke_cgbsvxx.c │ ├── lapacke_cgbsvxx_work.c │ ├── lapacke_cgbtrf.c │ ├── lapacke_cgbtrf_work.c │ ├── lapacke_cgbtrs.c │ ├── lapacke_cgbtrs_work.c │ ├── lapacke_cgebak.c │ ├── lapacke_cgebak_work.c │ ├── lapacke_cgebal.c │ ├── lapacke_cgebal_work.c │ ├── lapacke_cgebrd.c │ ├── lapacke_cgebrd_work.c │ ├── lapacke_cgecon.c │ ├── lapacke_cgecon_work.c │ ├── lapacke_cgeequ.c │ ├── lapacke_cgeequ_work.c │ ├── lapacke_cgeequb.c │ ├── lapacke_cgeequb_work.c │ ├── lapacke_cgees.c │ ├── lapacke_cgees_work.c │ ├── lapacke_cgeesx.c │ ├── lapacke_cgeesx_work.c │ ├── lapacke_cgeev.c │ ├── lapacke_cgeev_work.c │ ├── lapacke_cgeevx.c │ ├── lapacke_cgeevx_work.c │ ├── lapacke_cgehrd.c │ ├── lapacke_cgehrd_work.c │ ├── lapacke_cgejsv.c │ ├── lapacke_cgejsv_work.c │ ├── lapacke_cgelq2.c │ ├── lapacke_cgelq2_work.c │ ├── lapacke_cgelqf.c │ ├── lapacke_cgelqf_work.c │ ├── lapacke_cgels.c │ ├── lapacke_cgels_work.c │ ├── lapacke_cgelsd.c │ ├── lapacke_cgelsd_work.c │ ├── lapacke_cgelss.c │ ├── lapacke_cgelss_work.c │ ├── lapacke_cgelsy.c │ ├── lapacke_cgelsy_work.c │ ├── lapacke_cgemqrt.c │ ├── lapacke_cgemqrt_work.c │ ├── lapacke_cgeqlf.c │ ├── lapacke_cgeqlf_work.c │ ├── lapacke_cgeqp3.c │ ├── lapacke_cgeqp3_work.c │ ├── lapacke_cgeqpf.c │ ├── lapacke_cgeqpf_work.c │ ├── lapacke_cgeqr2.c │ ├── lapacke_cgeqr2_work.c │ ├── lapacke_cgeqrf.c │ ├── lapacke_cgeqrf_work.c │ ├── lapacke_cgeqrfp.c │ ├── lapacke_cgeqrfp_work.c │ ├── lapacke_cgeqrt.c │ ├── lapacke_cgeqrt2.c │ ├── lapacke_cgeqrt2_work.c │ ├── lapacke_cgeqrt3.c │ ├── lapacke_cgeqrt3_work.c │ ├── lapacke_cgeqrt_work.c │ ├── lapacke_cgerfs.c │ ├── lapacke_cgerfs_work.c │ ├── lapacke_cgerfsx.c │ ├── lapacke_cgerfsx_work.c │ ├── lapacke_cgerqf.c │ ├── lapacke_cgerqf_work.c │ ├── lapacke_cgesdd.c │ ├── lapacke_cgesdd_work.c │ ├── lapacke_cgesv.c │ ├── lapacke_cgesv_work.c │ ├── lapacke_cgesvd.c │ ├── lapacke_cgesvd_work.c │ ├── lapacke_cgesvdx.c │ ├── lapacke_cgesvdx_work.c │ ├── lapacke_cgesvj.c │ ├── lapacke_cgesvj_work.c │ ├── lapacke_cgesvx.c │ ├── lapacke_cgesvx_work.c │ ├── lapacke_cgesvxx.c │ ├── lapacke_cgesvxx_work.c │ ├── lapacke_cgetf2.c │ ├── lapacke_cgetf2_work.c │ ├── lapacke_cgetrf.c │ ├── lapacke_cgetrf2.c │ ├── lapacke_cgetrf2_work.c │ ├── lapacke_cgetrf_work.c │ ├── lapacke_cgetri.c │ ├── lapacke_cgetri_work.c │ ├── lapacke_cgetrs.c │ ├── lapacke_cgetrs_work.c │ ├── lapacke_cggbak.c │ ├── lapacke_cggbak_work.c │ ├── lapacke_cggbal.c │ ├── lapacke_cggbal_work.c │ ├── lapacke_cgges.c │ ├── lapacke_cgges3.c │ ├── lapacke_cgges3_work.c │ ├── lapacke_cgges_work.c │ ├── lapacke_cggesx.c │ ├── lapacke_cggesx_work.c │ ├── lapacke_cggev.c │ ├── lapacke_cggev3.c │ ├── lapacke_cggev3_work.c │ ├── lapacke_cggev_work.c │ ├── lapacke_cggevx.c │ ├── lapacke_cggevx_work.c │ ├── lapacke_cggglm.c │ ├── lapacke_cggglm_work.c │ ├── lapacke_cgghd3.c │ ├── lapacke_cgghd3_work.c │ ├── lapacke_cgghrd.c │ ├── lapacke_cgghrd_work.c │ ├── lapacke_cgglse.c │ ├── lapacke_cgglse_work.c │ ├── lapacke_cggqrf.c │ ├── lapacke_cggqrf_work.c │ ├── lapacke_cggrqf.c │ ├── lapacke_cggrqf_work.c │ ├── lapacke_cggsvd.c │ ├── lapacke_cggsvd3.c │ ├── lapacke_cggsvd3_work.c │ ├── lapacke_cggsvd_work.c │ ├── lapacke_cggsvp.c │ ├── lapacke_cggsvp3.c │ ├── lapacke_cggsvp3_work.c │ ├── lapacke_cggsvp_work.c │ ├── lapacke_cgtcon.c │ ├── lapacke_cgtcon_work.c │ ├── lapacke_cgtrfs.c │ ├── lapacke_cgtrfs_work.c │ ├── lapacke_cgtsv.c │ ├── lapacke_cgtsv_work.c │ ├── lapacke_cgtsvx.c │ ├── lapacke_cgtsvx_work.c │ ├── lapacke_cgttrf.c │ ├── lapacke_cgttrf_work.c │ ├── lapacke_cgttrs.c │ ├── lapacke_cgttrs_work.c │ ├── lapacke_chbev.c │ ├── lapacke_chbev_work.c │ ├── lapacke_chbevd.c │ ├── lapacke_chbevd_work.c │ ├── lapacke_chbevx.c │ ├── lapacke_chbevx_work.c │ ├── lapacke_chbgst.c │ ├── lapacke_chbgst_work.c │ ├── lapacke_chbgv.c │ ├── lapacke_chbgv_work.c │ ├── lapacke_chbgvd.c │ ├── lapacke_chbgvd_work.c │ ├── lapacke_chbgvx.c │ ├── lapacke_chbgvx_work.c │ ├── lapacke_chbtrd.c │ ├── lapacke_chbtrd_work.c │ ├── lapacke_checon.c │ ├── lapacke_checon_work.c │ ├── lapacke_cheequb.c │ ├── lapacke_cheequb_work.c │ ├── lapacke_cheev.c │ ├── lapacke_cheev_work.c │ ├── lapacke_cheevd.c │ ├── lapacke_cheevd_work.c │ ├── lapacke_cheevr.c │ ├── lapacke_cheevr_work.c │ ├── lapacke_cheevx.c │ ├── lapacke_cheevx_work.c │ ├── lapacke_chegst.c │ ├── lapacke_chegst_work.c │ ├── lapacke_chegv.c │ ├── lapacke_chegv_work.c │ ├── lapacke_chegvd.c │ ├── lapacke_chegvd_work.c │ ├── lapacke_chegvx.c │ ├── lapacke_chegvx_work.c │ ├── lapacke_cherfs.c │ ├── lapacke_cherfs_work.c │ ├── lapacke_cherfsx.c │ ├── lapacke_cherfsx_work.c │ ├── lapacke_chesv.c │ ├── lapacke_chesv_work.c │ ├── lapacke_chesvx.c │ ├── lapacke_chesvx_work.c │ ├── lapacke_chesvxx.c │ ├── lapacke_chesvxx_work.c │ ├── lapacke_cheswapr.c │ ├── lapacke_cheswapr_work.c │ ├── lapacke_chetrd.c │ ├── lapacke_chetrd_work.c │ ├── lapacke_chetrf.c │ ├── lapacke_chetrf_rook.c │ ├── lapacke_chetrf_rook_work.c │ ├── lapacke_chetrf_work.c │ ├── lapacke_chetri.c │ ├── lapacke_chetri2.c │ ├── lapacke_chetri2_work.c │ ├── lapacke_chetri2x.c │ ├── lapacke_chetri2x_work.c │ ├── lapacke_chetri_work.c │ ├── lapacke_chetrs.c │ ├── lapacke_chetrs2.c │ ├── lapacke_chetrs2_work.c │ ├── lapacke_chetrs_rook.c │ ├── lapacke_chetrs_rook_work.c │ ├── lapacke_chetrs_work.c │ ├── lapacke_chfrk.c │ ├── lapacke_chfrk_work.c │ ├── lapacke_chgeqz.c │ ├── lapacke_chgeqz_work.c │ ├── lapacke_chpcon.c │ ├── lapacke_chpcon_work.c │ ├── lapacke_chpev.c │ ├── lapacke_chpev_work.c │ ├── lapacke_chpevd.c │ ├── lapacke_chpevd_work.c │ ├── lapacke_chpevx.c │ ├── lapacke_chpevx_work.c │ ├── lapacke_chpgst.c │ ├── lapacke_chpgst_work.c │ ├── lapacke_chpgv.c │ ├── lapacke_chpgv_work.c │ ├── lapacke_chpgvd.c │ ├── lapacke_chpgvd_work.c │ ├── lapacke_chpgvx.c │ ├── lapacke_chpgvx_work.c │ ├── lapacke_chprfs.c │ ├── lapacke_chprfs_work.c │ ├── lapacke_chpsv.c │ ├── lapacke_chpsv_work.c │ ├── lapacke_chpsvx.c │ ├── lapacke_chpsvx_work.c │ ├── lapacke_chptrd.c │ ├── lapacke_chptrd_work.c │ ├── lapacke_chptrf.c │ ├── lapacke_chptrf_work.c │ ├── lapacke_chptri.c │ ├── lapacke_chptri_work.c │ ├── lapacke_chptrs.c │ ├── lapacke_chptrs_work.c │ ├── lapacke_chsein.c │ ├── lapacke_chsein_work.c │ ├── lapacke_chseqr.c │ ├── lapacke_chseqr_work.c │ ├── lapacke_clacgv.c │ ├── lapacke_clacgv_work.c │ ├── lapacke_clacn2.c │ ├── lapacke_clacn2_work.c │ ├── lapacke_clacp2.c │ ├── lapacke_clacp2_work.c │ ├── lapacke_clacpy.c │ ├── lapacke_clacpy_work.c │ ├── lapacke_clag2z.c │ ├── lapacke_clag2z_work.c │ ├── lapacke_clagge.c │ ├── lapacke_clagge_work.c │ ├── lapacke_claghe.c │ ├── lapacke_claghe_work.c │ ├── lapacke_clagsy.c │ ├── lapacke_clagsy_work.c │ ├── lapacke_clange.c │ ├── lapacke_clange_work.c │ ├── lapacke_clanhe.c │ ├── lapacke_clanhe_work.c │ ├── lapacke_clansy.c │ ├── lapacke_clansy_work.c │ ├── lapacke_clantr.c │ ├── lapacke_clantr_work.c │ ├── lapacke_clapmr.c │ ├── lapacke_clapmr_work.c │ ├── lapacke_clapmt.c │ ├── lapacke_clapmt_work.c │ ├── lapacke_clarfb.c │ ├── lapacke_clarfb_work.c │ ├── lapacke_clarfg.c │ ├── lapacke_clarfg_work.c │ ├── lapacke_clarft.c │ ├── lapacke_clarft_work.c │ ├── lapacke_clarfx.c │ ├── lapacke_clarfx_work.c │ ├── lapacke_clarnv.c │ ├── lapacke_clarnv_work.c │ ├── lapacke_clascl.c │ ├── lapacke_clascl_work.c │ ├── lapacke_claset.c │ ├── lapacke_claset_work.c │ ├── lapacke_claswp.c │ ├── lapacke_claswp_work.c │ ├── lapacke_clatms.c │ ├── lapacke_clatms_work.c │ ├── lapacke_clauum.c │ ├── lapacke_clauum_work.c │ ├── lapacke_cpbcon.c │ ├── lapacke_cpbcon_work.c │ ├── lapacke_cpbequ.c │ ├── lapacke_cpbequ_work.c │ ├── lapacke_cpbrfs.c │ ├── lapacke_cpbrfs_work.c │ ├── lapacke_cpbstf.c │ ├── lapacke_cpbstf_work.c │ ├── lapacke_cpbsv.c │ ├── lapacke_cpbsv_work.c │ ├── lapacke_cpbsvx.c │ ├── lapacke_cpbsvx_work.c │ ├── lapacke_cpbtrf.c │ ├── lapacke_cpbtrf_work.c │ ├── lapacke_cpbtrs.c │ ├── lapacke_cpbtrs_work.c │ ├── lapacke_cpftrf.c │ ├── lapacke_cpftrf_work.c │ ├── lapacke_cpftri.c │ ├── lapacke_cpftri_work.c │ ├── lapacke_cpftrs.c │ ├── lapacke_cpftrs_work.c │ ├── lapacke_cpocon.c │ ├── lapacke_cpocon_work.c │ ├── lapacke_cpoequ.c │ ├── lapacke_cpoequ_work.c │ ├── lapacke_cpoequb.c │ ├── lapacke_cpoequb_work.c │ ├── lapacke_cporfs.c │ ├── lapacke_cporfs_work.c │ ├── lapacke_cporfsx.c │ ├── lapacke_cporfsx_work.c │ ├── lapacke_cposv.c │ ├── lapacke_cposv_work.c │ ├── lapacke_cposvx.c │ ├── lapacke_cposvx_work.c │ ├── lapacke_cposvxx.c │ ├── lapacke_cposvxx_work.c │ ├── lapacke_cpotrf.c │ ├── lapacke_cpotrf2.c │ ├── lapacke_cpotrf2_work.c │ ├── lapacke_cpotrf_work.c │ ├── lapacke_cpotri.c │ ├── lapacke_cpotri_work.c │ ├── lapacke_cpotrs.c │ ├── lapacke_cpotrs_work.c │ ├── lapacke_cppcon.c │ ├── lapacke_cppcon_work.c │ ├── lapacke_cppequ.c │ ├── lapacke_cppequ_work.c │ ├── lapacke_cpprfs.c │ ├── lapacke_cpprfs_work.c │ ├── lapacke_cppsv.c │ ├── lapacke_cppsv_work.c │ ├── lapacke_cppsvx.c │ ├── lapacke_cppsvx_work.c │ ├── lapacke_cpptrf.c │ ├── lapacke_cpptrf_work.c │ ├── lapacke_cpptri.c │ ├── lapacke_cpptri_work.c │ ├── lapacke_cpptrs.c │ ├── lapacke_cpptrs_work.c │ ├── lapacke_cpstrf.c │ ├── lapacke_cpstrf_work.c │ ├── lapacke_cptcon.c │ ├── lapacke_cptcon_work.c │ ├── lapacke_cpteqr.c │ ├── lapacke_cpteqr_work.c │ ├── lapacke_cptrfs.c │ ├── lapacke_cptrfs_work.c │ ├── lapacke_cptsv.c │ ├── lapacke_cptsv_work.c │ ├── lapacke_cptsvx.c │ ├── lapacke_cptsvx_work.c │ ├── lapacke_cpttrf.c │ ├── lapacke_cpttrf_work.c │ ├── lapacke_cpttrs.c │ ├── lapacke_cpttrs_work.c │ ├── lapacke_cspcon.c │ ├── lapacke_cspcon_work.c │ ├── lapacke_csprfs.c │ ├── lapacke_csprfs_work.c │ ├── lapacke_cspsv.c │ ├── lapacke_cspsv_work.c │ ├── lapacke_cspsvx.c │ ├── lapacke_cspsvx_work.c │ ├── lapacke_csptrf.c │ ├── lapacke_csptrf_work.c │ ├── lapacke_csptri.c │ ├── lapacke_csptri_work.c │ ├── lapacke_csptrs.c │ ├── lapacke_csptrs_work.c │ ├── lapacke_cstedc.c │ ├── lapacke_cstedc_work.c │ ├── lapacke_cstegr.c │ ├── lapacke_cstegr_work.c │ ├── lapacke_cstein.c │ ├── lapacke_cstein_work.c │ ├── lapacke_cstemr.c │ ├── lapacke_cstemr_work.c │ ├── lapacke_csteqr.c │ ├── lapacke_csteqr_work.c │ ├── lapacke_csycon.c │ ├── lapacke_csycon_work.c │ ├── lapacke_csyconv.c │ ├── lapacke_csyconv_work.c │ ├── lapacke_csyequb.c │ ├── lapacke_csyequb_work.c │ ├── lapacke_csyr.c │ ├── lapacke_csyr_work.c │ ├── lapacke_csyrfs.c │ ├── lapacke_csyrfs_work.c │ ├── lapacke_csyrfsx.c │ ├── lapacke_csyrfsx_work.c │ ├── lapacke_csysv.c │ ├── lapacke_csysv_rook.c │ ├── lapacke_csysv_rook_work.c │ ├── lapacke_csysv_work.c │ ├── lapacke_csysvx.c │ ├── lapacke_csysvx_work.c │ ├── lapacke_csysvxx.c │ ├── lapacke_csysvxx_work.c │ ├── lapacke_csyswapr.c │ ├── lapacke_csyswapr_work.c │ ├── lapacke_csytrf.c │ ├── lapacke_csytrf_rook.c │ ├── lapacke_csytrf_rook_work.c │ ├── lapacke_csytrf_work.c │ ├── lapacke_csytri.c │ ├── lapacke_csytri2.c │ ├── lapacke_csytri2_work.c │ ├── lapacke_csytri2x.c │ ├── lapacke_csytri2x_work.c │ ├── lapacke_csytri_work.c │ ├── lapacke_csytrs.c │ ├── lapacke_csytrs2.c │ ├── lapacke_csytrs2_work.c │ ├── lapacke_csytrs_rook.c │ ├── lapacke_csytrs_rook_work.c │ ├── lapacke_csytrs_work.c │ ├── lapacke_ctbcon.c │ ├── lapacke_ctbcon_work.c │ ├── lapacke_ctbrfs.c │ ├── lapacke_ctbrfs_work.c │ ├── lapacke_ctbtrs.c │ ├── lapacke_ctbtrs_work.c │ ├── lapacke_ctfsm.c │ ├── lapacke_ctfsm_work.c │ ├── lapacke_ctftri.c │ ├── lapacke_ctftri_work.c │ ├── lapacke_ctfttp.c │ ├── lapacke_ctfttp_work.c │ ├── lapacke_ctfttr.c │ ├── lapacke_ctfttr_work.c │ ├── lapacke_ctgevc.c │ ├── lapacke_ctgevc_work.c │ ├── lapacke_ctgexc.c │ ├── lapacke_ctgexc_work.c │ ├── lapacke_ctgsen.c │ ├── lapacke_ctgsen_work.c │ ├── lapacke_ctgsja.c │ ├── lapacke_ctgsja_work.c │ ├── lapacke_ctgsna.c │ ├── lapacke_ctgsna_work.c │ ├── lapacke_ctgsyl.c │ ├── lapacke_ctgsyl_work.c │ ├── lapacke_ctpcon.c │ ├── lapacke_ctpcon_work.c │ ├── lapacke_ctpmqrt.c │ ├── lapacke_ctpmqrt_work.c │ ├── lapacke_ctpqrt.c │ ├── lapacke_ctpqrt2.c │ ├── lapacke_ctpqrt2_work.c │ ├── lapacke_ctpqrt_work.c │ ├── lapacke_ctprfb.c │ ├── lapacke_ctprfb_work.c │ ├── lapacke_ctprfs.c │ ├── lapacke_ctprfs_work.c │ ├── lapacke_ctptri.c │ ├── lapacke_ctptri_work.c │ ├── lapacke_ctptrs.c │ ├── lapacke_ctptrs_work.c │ ├── lapacke_ctpttf.c │ ├── lapacke_ctpttf_work.c │ ├── lapacke_ctpttr.c │ ├── lapacke_ctpttr_work.c │ ├── lapacke_ctrcon.c │ ├── lapacke_ctrcon_work.c │ ├── lapacke_ctrevc.c │ ├── lapacke_ctrevc_work.c │ ├── lapacke_ctrexc.c │ ├── lapacke_ctrexc_work.c │ ├── lapacke_ctrrfs.c │ ├── lapacke_ctrrfs_work.c │ ├── lapacke_ctrsen.c │ ├── lapacke_ctrsen_work.c │ ├── lapacke_ctrsna.c │ ├── lapacke_ctrsna_work.c │ ├── lapacke_ctrsyl.c │ ├── lapacke_ctrsyl_work.c │ ├── lapacke_ctrtri.c │ ├── lapacke_ctrtri_work.c │ ├── lapacke_ctrtrs.c │ ├── lapacke_ctrtrs_work.c │ ├── lapacke_ctrttf.c │ ├── lapacke_ctrttf_work.c │ ├── lapacke_ctrttp.c │ ├── lapacke_ctrttp_work.c │ ├── lapacke_ctzrzf.c │ ├── lapacke_ctzrzf_work.c │ ├── lapacke_cunbdb.c │ ├── lapacke_cunbdb_work.c │ ├── lapacke_cuncsd.c │ ├── lapacke_cuncsd2by1.c │ ├── lapacke_cuncsd2by1_work.c │ ├── lapacke_cuncsd_work.c │ ├── lapacke_cungbr.c │ ├── lapacke_cungbr_work.c │ ├── lapacke_cunghr.c │ ├── lapacke_cunghr_work.c │ ├── lapacke_cunglq.c │ ├── lapacke_cunglq_work.c │ ├── lapacke_cungql.c │ ├── lapacke_cungql_work.c │ ├── lapacke_cungqr.c │ ├── lapacke_cungqr_work.c │ ├── lapacke_cungrq.c │ ├── lapacke_cungrq_work.c │ ├── lapacke_cungtr.c │ ├── lapacke_cungtr_work.c │ ├── lapacke_cunmbr.c │ ├── lapacke_cunmbr_work.c │ ├── lapacke_cunmhr.c │ ├── lapacke_cunmhr_work.c │ ├── lapacke_cunmlq.c │ ├── lapacke_cunmlq_work.c │ ├── lapacke_cunmql.c │ ├── lapacke_cunmql_work.c │ ├── lapacke_cunmqr.c │ ├── lapacke_cunmqr_work.c │ ├── lapacke_cunmrq.c │ ├── lapacke_cunmrq_work.c │ ├── lapacke_cunmrz.c │ ├── lapacke_cunmrz_work.c │ ├── lapacke_cunmtr.c │ ├── lapacke_cunmtr_work.c │ ├── lapacke_cupgtr.c │ ├── lapacke_cupgtr_work.c │ ├── lapacke_cupmtr.c │ ├── lapacke_cupmtr_work.c │ ├── lapacke_dbbcsd.c │ ├── lapacke_dbbcsd_work.c │ ├── lapacke_dbdsdc.c │ ├── lapacke_dbdsdc_work.c │ ├── lapacke_dbdsqr.c │ ├── lapacke_dbdsqr_work.c │ ├── lapacke_dbdsvdx.c │ ├── lapacke_dbdsvdx_work.c │ ├── lapacke_ddisna.c │ ├── lapacke_ddisna_work.c │ ├── lapacke_dgbbrd.c │ ├── lapacke_dgbbrd_work.c │ ├── lapacke_dgbcon.c │ ├── lapacke_dgbcon_work.c │ ├── lapacke_dgbequ.c │ ├── lapacke_dgbequ_work.c │ ├── lapacke_dgbequb.c │ ├── lapacke_dgbequb_work.c │ ├── lapacke_dgbrfs.c │ ├── lapacke_dgbrfs_work.c │ ├── lapacke_dgbrfsx.c │ ├── lapacke_dgbrfsx_work.c │ ├── lapacke_dgbsv.c │ ├── lapacke_dgbsv_work.c │ ├── lapacke_dgbsvx.c │ ├── lapacke_dgbsvx_work.c │ ├── lapacke_dgbsvxx.c │ ├── lapacke_dgbsvxx_work.c │ ├── lapacke_dgbtrf.c │ ├── lapacke_dgbtrf_work.c │ ├── lapacke_dgbtrs.c │ ├── lapacke_dgbtrs_work.c │ ├── lapacke_dgebak.c │ ├── lapacke_dgebak_work.c │ ├── lapacke_dgebal.c │ ├── lapacke_dgebal_work.c │ ├── lapacke_dgebrd.c │ ├── lapacke_dgebrd_work.c │ ├── lapacke_dgecon.c │ ├── lapacke_dgecon_work.c │ ├── lapacke_dgeequ.c │ ├── lapacke_dgeequ_work.c │ ├── lapacke_dgeequb.c │ ├── lapacke_dgeequb_work.c │ ├── lapacke_dgees.c │ ├── lapacke_dgees_work.c │ ├── lapacke_dgeesx.c │ ├── lapacke_dgeesx_work.c │ ├── lapacke_dgeev.c │ ├── lapacke_dgeev_work.c │ ├── lapacke_dgeevx.c │ ├── lapacke_dgeevx_work.c │ ├── lapacke_dgehrd.c │ ├── lapacke_dgehrd_work.c │ ├── lapacke_dgejsv.c │ ├── lapacke_dgejsv_work.c │ ├── lapacke_dgelq2.c │ ├── lapacke_dgelq2_work.c │ ├── lapacke_dgelqf.c │ ├── lapacke_dgelqf_work.c │ ├── lapacke_dgels.c │ ├── lapacke_dgels_work.c │ ├── lapacke_dgelsd.c │ ├── lapacke_dgelsd_work.c │ ├── lapacke_dgelss.c │ ├── lapacke_dgelss_work.c │ ├── lapacke_dgelsy.c │ ├── lapacke_dgelsy_work.c │ ├── lapacke_dgemqrt.c │ ├── lapacke_dgemqrt_work.c │ ├── lapacke_dgeqlf.c │ ├── lapacke_dgeqlf_work.c │ ├── lapacke_dgeqp3.c │ ├── lapacke_dgeqp3_work.c │ ├── lapacke_dgeqpf.c │ ├── lapacke_dgeqpf_work.c │ ├── lapacke_dgeqr2.c │ ├── lapacke_dgeqr2_work.c │ ├── lapacke_dgeqrf.c │ ├── lapacke_dgeqrf_work.c │ ├── lapacke_dgeqrfp.c │ ├── lapacke_dgeqrfp_work.c │ ├── lapacke_dgeqrt.c │ ├── lapacke_dgeqrt2.c │ ├── lapacke_dgeqrt2_work.c │ ├── lapacke_dgeqrt3.c │ ├── lapacke_dgeqrt3_work.c │ ├── lapacke_dgeqrt_work.c │ ├── lapacke_dgerfs.c │ ├── lapacke_dgerfs_work.c │ ├── lapacke_dgerfsx.c │ ├── lapacke_dgerfsx_work.c │ ├── lapacke_dgerqf.c │ ├── lapacke_dgerqf_work.c │ ├── lapacke_dgesdd.c │ ├── lapacke_dgesdd_work.c │ ├── lapacke_dgesv.c │ ├── lapacke_dgesv_work.c │ ├── lapacke_dgesvd.c │ ├── lapacke_dgesvd_work.c │ ├── lapacke_dgesvdx.c │ ├── lapacke_dgesvdx_work.c │ ├── lapacke_dgesvj.c │ ├── lapacke_dgesvj_work.c │ ├── lapacke_dgesvx.c │ ├── lapacke_dgesvx_work.c │ ├── lapacke_dgesvxx.c │ ├── lapacke_dgesvxx_work.c │ ├── lapacke_dgetf2.c │ ├── lapacke_dgetf2_work.c │ ├── lapacke_dgetrf.c │ ├── lapacke_dgetrf2.c │ ├── lapacke_dgetrf2_work.c │ ├── lapacke_dgetrf_work.c │ ├── lapacke_dgetri.c │ ├── lapacke_dgetri_work.c │ ├── lapacke_dgetrs.c │ ├── lapacke_dgetrs_work.c │ ├── lapacke_dggbak.c │ ├── lapacke_dggbak_work.c │ ├── lapacke_dggbal.c │ ├── lapacke_dggbal_work.c │ ├── lapacke_dgges.c │ ├── lapacke_dgges3.c │ ├── lapacke_dgges3_work.c │ ├── lapacke_dgges_work.c │ ├── lapacke_dggesx.c │ ├── lapacke_dggesx_work.c │ ├── lapacke_dggev.c │ ├── lapacke_dggev3.c │ ├── lapacke_dggev3_work.c │ ├── lapacke_dggev_work.c │ ├── lapacke_dggevx.c │ ├── lapacke_dggevx_work.c │ ├── lapacke_dggglm.c │ ├── lapacke_dggglm_work.c │ ├── lapacke_dgghd3.c │ ├── lapacke_dgghd3_work.c │ ├── lapacke_dgghrd.c │ ├── lapacke_dgghrd_work.c │ ├── lapacke_dgglse.c │ ├── lapacke_dgglse_work.c │ ├── lapacke_dggqrf.c │ ├── lapacke_dggqrf_work.c │ ├── lapacke_dggrqf.c │ ├── lapacke_dggrqf_work.c │ ├── lapacke_dggsvd.c │ ├── lapacke_dggsvd3.c │ ├── lapacke_dggsvd3_work.c │ ├── lapacke_dggsvd_work.c │ ├── lapacke_dggsvp.c │ ├── lapacke_dggsvp3.c │ ├── lapacke_dggsvp3_work.c │ ├── lapacke_dggsvp_work.c │ ├── lapacke_dgtcon.c │ ├── lapacke_dgtcon_work.c │ ├── lapacke_dgtrfs.c │ ├── lapacke_dgtrfs_work.c │ ├── lapacke_dgtsv.c │ ├── lapacke_dgtsv_work.c │ ├── lapacke_dgtsvx.c │ ├── lapacke_dgtsvx_work.c │ ├── lapacke_dgttrf.c │ ├── lapacke_dgttrf_work.c │ ├── lapacke_dgttrs.c │ ├── lapacke_dgttrs_work.c │ ├── lapacke_dhgeqz.c │ ├── lapacke_dhgeqz_work.c │ ├── lapacke_dhsein.c │ ├── lapacke_dhsein_work.c │ ├── lapacke_dhseqr.c │ ├── lapacke_dhseqr_work.c │ ├── lapacke_dlacn2.c │ ├── lapacke_dlacn2_work.c │ ├── lapacke_dlacpy.c │ ├── lapacke_dlacpy_work.c │ ├── lapacke_dlag2s.c │ ├── lapacke_dlag2s_work.c │ ├── lapacke_dlagge.c │ ├── lapacke_dlagge_work.c │ ├── lapacke_dlagsy.c │ ├── lapacke_dlagsy_work.c │ ├── lapacke_dlamch.c │ ├── lapacke_dlamch_work.c │ ├── lapacke_dlange.c │ ├── lapacke_dlange_work.c │ ├── lapacke_dlansy.c │ ├── lapacke_dlansy_work.c │ ├── lapacke_dlantr.c │ ├── lapacke_dlantr_work.c │ ├── lapacke_dlapmr.c │ ├── lapacke_dlapmr_work.c │ ├── lapacke_dlapmt.c │ ├── lapacke_dlapmt_work.c │ ├── lapacke_dlapy2.c │ ├── lapacke_dlapy2_work.c │ ├── lapacke_dlapy3.c │ ├── lapacke_dlapy3_work.c │ ├── lapacke_dlarfb.c │ ├── lapacke_dlarfb_work.c │ ├── lapacke_dlarfg.c │ ├── lapacke_dlarfg_work.c │ ├── lapacke_dlarft.c │ ├── lapacke_dlarft_work.c │ ├── lapacke_dlarfx.c │ ├── lapacke_dlarfx_work.c │ ├── lapacke_dlarnv.c │ ├── lapacke_dlarnv_work.c │ ├── lapacke_dlartgp.c │ ├── lapacke_dlartgp_work.c │ ├── lapacke_dlartgs.c │ ├── lapacke_dlartgs_work.c │ ├── lapacke_dlascl.c │ ├── lapacke_dlascl_work.c │ ├── lapacke_dlaset.c │ ├── lapacke_dlaset_work.c │ ├── lapacke_dlasrt.c │ ├── lapacke_dlasrt_work.c │ ├── lapacke_dlaswp.c │ ├── lapacke_dlaswp_work.c │ ├── lapacke_dlatms.c │ ├── lapacke_dlatms_work.c │ ├── lapacke_dlauum.c │ ├── lapacke_dlauum_work.c │ ├── lapacke_dopgtr.c │ ├── lapacke_dopgtr_work.c │ ├── lapacke_dopmtr.c │ ├── lapacke_dopmtr_work.c │ ├── lapacke_dorbdb.c │ ├── lapacke_dorbdb_work.c │ ├── lapacke_dorcsd.c │ ├── lapacke_dorcsd2by1.c │ ├── lapacke_dorcsd2by1_work.c │ ├── lapacke_dorcsd_work.c │ ├── lapacke_dorgbr.c │ ├── lapacke_dorgbr_work.c │ ├── lapacke_dorghr.c │ ├── lapacke_dorghr_work.c │ ├── lapacke_dorglq.c │ ├── lapacke_dorglq_work.c │ ├── lapacke_dorgql.c │ ├── lapacke_dorgql_work.c │ ├── lapacke_dorgqr.c │ ├── lapacke_dorgqr_work.c │ ├── lapacke_dorgrq.c │ ├── lapacke_dorgrq_work.c │ ├── lapacke_dorgtr.c │ ├── lapacke_dorgtr_work.c │ ├── lapacke_dormbr.c │ ├── lapacke_dormbr_work.c │ ├── lapacke_dormhr.c │ ├── lapacke_dormhr_work.c │ ├── lapacke_dormlq.c │ ├── lapacke_dormlq_work.c │ ├── lapacke_dormql.c │ ├── lapacke_dormql_work.c │ ├── lapacke_dormqr.c │ ├── lapacke_dormqr_work.c │ ├── lapacke_dormrq.c │ ├── lapacke_dormrq_work.c │ ├── lapacke_dormrz.c │ ├── lapacke_dormrz_work.c │ ├── lapacke_dormtr.c │ ├── lapacke_dormtr_work.c │ ├── lapacke_dpbcon.c │ ├── lapacke_dpbcon_work.c │ ├── lapacke_dpbequ.c │ ├── lapacke_dpbequ_work.c │ ├── lapacke_dpbrfs.c │ ├── lapacke_dpbrfs_work.c │ ├── lapacke_dpbstf.c │ ├── lapacke_dpbstf_work.c │ ├── lapacke_dpbsv.c │ ├── lapacke_dpbsv_work.c │ ├── lapacke_dpbsvx.c │ ├── lapacke_dpbsvx_work.c │ ├── lapacke_dpbtrf.c │ ├── lapacke_dpbtrf_work.c │ ├── lapacke_dpbtrs.c │ ├── lapacke_dpbtrs_work.c │ ├── lapacke_dpftrf.c │ ├── lapacke_dpftrf_work.c │ ├── lapacke_dpftri.c │ ├── lapacke_dpftri_work.c │ ├── lapacke_dpftrs.c │ ├── lapacke_dpftrs_work.c │ ├── lapacke_dpocon.c │ ├── lapacke_dpocon_work.c │ ├── lapacke_dpoequ.c │ ├── lapacke_dpoequ_work.c │ ├── lapacke_dpoequb.c │ ├── lapacke_dpoequb_work.c │ ├── lapacke_dporfs.c │ ├── lapacke_dporfs_work.c │ ├── lapacke_dporfsx.c │ ├── lapacke_dporfsx_work.c │ ├── lapacke_dposv.c │ ├── lapacke_dposv_work.c │ ├── lapacke_dposvx.c │ ├── lapacke_dposvx_work.c │ ├── lapacke_dposvxx.c │ ├── lapacke_dposvxx_work.c │ ├── lapacke_dpotrf.c │ ├── lapacke_dpotrf2.c │ ├── lapacke_dpotrf2_work.c │ ├── lapacke_dpotrf_work.c │ ├── lapacke_dpotri.c │ ├── lapacke_dpotri_work.c │ ├── lapacke_dpotrs.c │ ├── lapacke_dpotrs_work.c │ ├── lapacke_dppcon.c │ ├── lapacke_dppcon_work.c │ ├── lapacke_dppequ.c │ ├── lapacke_dppequ_work.c │ ├── lapacke_dpprfs.c │ ├── lapacke_dpprfs_work.c │ ├── lapacke_dppsv.c │ ├── lapacke_dppsv_work.c │ ├── lapacke_dppsvx.c │ ├── lapacke_dppsvx_work.c │ ├── lapacke_dpptrf.c │ ├── lapacke_dpptrf_work.c │ ├── lapacke_dpptri.c │ ├── lapacke_dpptri_work.c │ ├── lapacke_dpptrs.c │ ├── lapacke_dpptrs_work.c │ ├── lapacke_dpstrf.c │ ├── lapacke_dpstrf_work.c │ ├── lapacke_dptcon.c │ ├── lapacke_dptcon_work.c │ ├── lapacke_dpteqr.c │ ├── lapacke_dpteqr_work.c │ ├── lapacke_dptrfs.c │ ├── lapacke_dptrfs_work.c │ ├── lapacke_dptsv.c │ ├── lapacke_dptsv_work.c │ ├── lapacke_dptsvx.c │ ├── lapacke_dptsvx_work.c │ ├── lapacke_dpttrf.c │ ├── lapacke_dpttrf_work.c │ ├── lapacke_dpttrs.c │ ├── lapacke_dpttrs_work.c │ ├── lapacke_dsbev.c │ ├── lapacke_dsbev_work.c │ ├── lapacke_dsbevd.c │ ├── lapacke_dsbevd_work.c │ ├── lapacke_dsbevx.c │ ├── lapacke_dsbevx_work.c │ ├── lapacke_dsbgst.c │ ├── lapacke_dsbgst_work.c │ ├── lapacke_dsbgv.c │ ├── lapacke_dsbgv_work.c │ ├── lapacke_dsbgvd.c │ ├── lapacke_dsbgvd_work.c │ ├── lapacke_dsbgvx.c │ ├── lapacke_dsbgvx_work.c │ ├── lapacke_dsbtrd.c │ ├── lapacke_dsbtrd_work.c │ ├── lapacke_dsfrk.c │ ├── lapacke_dsfrk_work.c │ ├── lapacke_dsgesv.c │ ├── lapacke_dsgesv_work.c │ ├── lapacke_dspcon.c │ ├── lapacke_dspcon_work.c │ ├── lapacke_dspev.c │ ├── lapacke_dspev_work.c │ ├── lapacke_dspevd.c │ ├── lapacke_dspevd_work.c │ ├── lapacke_dspevx.c │ ├── lapacke_dspevx_work.c │ ├── lapacke_dspgst.c │ ├── lapacke_dspgst_work.c │ ├── lapacke_dspgv.c │ ├── lapacke_dspgv_work.c │ ├── lapacke_dspgvd.c │ ├── lapacke_dspgvd_work.c │ ├── lapacke_dspgvx.c │ ├── lapacke_dspgvx_work.c │ ├── lapacke_dsposv.c │ ├── lapacke_dsposv_work.c │ ├── lapacke_dsprfs.c │ ├── lapacke_dsprfs_work.c │ ├── lapacke_dspsv.c │ ├── lapacke_dspsv_work.c │ ├── lapacke_dspsvx.c │ ├── lapacke_dspsvx_work.c │ ├── lapacke_dsptrd.c │ ├── lapacke_dsptrd_work.c │ ├── lapacke_dsptrf.c │ ├── lapacke_dsptrf_work.c │ ├── lapacke_dsptri.c │ ├── lapacke_dsptri_work.c │ ├── lapacke_dsptrs.c │ ├── lapacke_dsptrs_work.c │ ├── lapacke_dstebz.c │ ├── lapacke_dstebz_work.c │ ├── lapacke_dstedc.c │ ├── lapacke_dstedc_work.c │ ├── lapacke_dstegr.c │ ├── lapacke_dstegr_work.c │ ├── lapacke_dstein.c │ ├── lapacke_dstein_work.c │ ├── lapacke_dstemr.c │ ├── lapacke_dstemr_work.c │ ├── lapacke_dsteqr.c │ ├── lapacke_dsteqr_work.c │ ├── lapacke_dsterf.c │ ├── lapacke_dsterf_work.c │ ├── lapacke_dstev.c │ ├── lapacke_dstev_work.c │ ├── lapacke_dstevd.c │ ├── lapacke_dstevd_work.c │ ├── lapacke_dstevr.c │ ├── lapacke_dstevr_work.c │ ├── lapacke_dstevx.c │ ├── lapacke_dstevx_work.c │ ├── lapacke_dsycon.c │ ├── lapacke_dsycon_work.c │ ├── lapacke_dsyconv.c │ ├── lapacke_dsyconv_work.c │ ├── lapacke_dsyequb.c │ ├── lapacke_dsyequb_work.c │ ├── lapacke_dsyev.c │ ├── lapacke_dsyev_work.c │ ├── lapacke_dsyevd.c │ ├── lapacke_dsyevd_work.c │ ├── lapacke_dsyevr.c │ ├── lapacke_dsyevr_work.c │ ├── lapacke_dsyevx.c │ ├── lapacke_dsyevx_work.c │ ├── lapacke_dsygst.c │ ├── lapacke_dsygst_work.c │ ├── lapacke_dsygv.c │ ├── lapacke_dsygv_work.c │ ├── lapacke_dsygvd.c │ ├── lapacke_dsygvd_work.c │ ├── lapacke_dsygvx.c │ ├── lapacke_dsygvx_work.c │ ├── lapacke_dsyrfs.c │ ├── lapacke_dsyrfs_work.c │ ├── lapacke_dsyrfsx.c │ ├── lapacke_dsyrfsx_work.c │ ├── lapacke_dsysv.c │ ├── lapacke_dsysv_rook.c │ ├── lapacke_dsysv_rook_work.c │ ├── lapacke_dsysv_work.c │ ├── lapacke_dsysvx.c │ ├── lapacke_dsysvx_work.c │ ├── lapacke_dsysvxx.c │ ├── lapacke_dsysvxx_work.c │ ├── lapacke_dsyswapr.c │ ├── lapacke_dsyswapr_work.c │ ├── lapacke_dsytrd.c │ ├── lapacke_dsytrd_work.c │ ├── lapacke_dsytrf.c │ ├── lapacke_dsytrf_rook.c │ ├── lapacke_dsytrf_rook_work.c │ ├── lapacke_dsytrf_work.c │ ├── lapacke_dsytri.c │ ├── lapacke_dsytri2.c │ ├── lapacke_dsytri2_work.c │ ├── lapacke_dsytri2x.c │ ├── lapacke_dsytri2x_work.c │ ├── lapacke_dsytri_work.c │ ├── lapacke_dsytrs.c │ ├── lapacke_dsytrs2.c │ ├── lapacke_dsytrs2_work.c │ ├── lapacke_dsytrs_rook.c │ ├── lapacke_dsytrs_rook_work.c │ ├── lapacke_dsytrs_work.c │ ├── lapacke_dtbcon.c │ ├── lapacke_dtbcon_work.c │ ├── lapacke_dtbrfs.c │ ├── lapacke_dtbrfs_work.c │ ├── lapacke_dtbtrs.c │ ├── lapacke_dtbtrs_work.c │ ├── lapacke_dtfsm.c │ ├── lapacke_dtfsm_work.c │ ├── lapacke_dtftri.c │ ├── lapacke_dtftri_work.c │ ├── lapacke_dtfttp.c │ ├── lapacke_dtfttp_work.c │ ├── lapacke_dtfttr.c │ ├── lapacke_dtfttr_work.c │ ├── lapacke_dtgevc.c │ ├── lapacke_dtgevc_work.c │ ├── lapacke_dtgexc.c │ ├── lapacke_dtgexc_work.c │ ├── lapacke_dtgsen.c │ ├── lapacke_dtgsen_work.c │ ├── lapacke_dtgsja.c │ ├── lapacke_dtgsja_work.c │ ├── lapacke_dtgsna.c │ ├── lapacke_dtgsna_work.c │ ├── lapacke_dtgsyl.c │ ├── lapacke_dtgsyl_work.c │ ├── lapacke_dtpcon.c │ ├── lapacke_dtpcon_work.c │ ├── lapacke_dtpmqrt.c │ ├── lapacke_dtpmqrt_work.c │ ├── lapacke_dtpqrt.c │ ├── lapacke_dtpqrt2.c │ ├── lapacke_dtpqrt2_work.c │ ├── lapacke_dtpqrt_work.c │ ├── lapacke_dtprfb.c │ ├── lapacke_dtprfb_work.c │ ├── lapacke_dtprfs.c │ ├── lapacke_dtprfs_work.c │ ├── lapacke_dtptri.c │ ├── lapacke_dtptri_work.c │ ├── lapacke_dtptrs.c │ ├── lapacke_dtptrs_work.c │ ├── lapacke_dtpttf.c │ ├── lapacke_dtpttf_work.c │ ├── lapacke_dtpttr.c │ ├── lapacke_dtpttr_work.c │ ├── lapacke_dtrcon.c │ ├── lapacke_dtrcon_work.c │ ├── lapacke_dtrevc.c │ ├── lapacke_dtrevc_work.c │ ├── lapacke_dtrexc.c │ ├── lapacke_dtrexc_work.c │ ├── lapacke_dtrrfs.c │ ├── lapacke_dtrrfs_work.c │ ├── lapacke_dtrsen.c │ ├── lapacke_dtrsen_work.c │ ├── lapacke_dtrsna.c │ ├── lapacke_dtrsna_work.c │ ├── lapacke_dtrsyl.c │ ├── lapacke_dtrsyl_work.c │ ├── lapacke_dtrtri.c │ ├── lapacke_dtrtri_work.c │ ├── lapacke_dtrtrs.c │ ├── lapacke_dtrtrs_work.c │ ├── lapacke_dtrttf.c │ ├── lapacke_dtrttf_work.c │ ├── lapacke_dtrttp.c │ ├── lapacke_dtrttp_work.c │ ├── lapacke_dtzrzf.c │ ├── lapacke_dtzrzf_work.c │ ├── lapacke_ilaver.c │ ├── lapacke_sbbcsd.c │ ├── lapacke_sbbcsd_work.c │ ├── lapacke_sbdsdc.c │ ├── lapacke_sbdsdc_work.c │ ├── lapacke_sbdsqr.c │ ├── lapacke_sbdsqr_work.c │ ├── lapacke_sbdsvdx.c │ ├── lapacke_sbdsvdx_work.c │ ├── lapacke_sdisna.c │ ├── lapacke_sdisna_work.c │ ├── lapacke_sgbbrd.c │ ├── lapacke_sgbbrd_work.c │ ├── lapacke_sgbcon.c │ ├── lapacke_sgbcon_work.c │ ├── lapacke_sgbequ.c │ ├── lapacke_sgbequ_work.c │ ├── lapacke_sgbequb.c │ ├── lapacke_sgbequb_work.c │ ├── lapacke_sgbrfs.c │ ├── lapacke_sgbrfs_work.c │ ├── lapacke_sgbrfsx.c │ ├── lapacke_sgbrfsx_work.c │ ├── lapacke_sgbsv.c │ ├── lapacke_sgbsv_work.c │ ├── lapacke_sgbsvx.c │ ├── lapacke_sgbsvx_work.c │ ├── lapacke_sgbsvxx.c │ ├── lapacke_sgbsvxx_work.c │ ├── lapacke_sgbtrf.c │ ├── lapacke_sgbtrf_work.c │ ├── lapacke_sgbtrs.c │ ├── lapacke_sgbtrs_work.c │ ├── lapacke_sgebak.c │ ├── lapacke_sgebak_work.c │ ├── lapacke_sgebal.c │ ├── lapacke_sgebal_work.c │ ├── lapacke_sgebrd.c │ ├── lapacke_sgebrd_work.c │ ├── lapacke_sgecon.c │ ├── lapacke_sgecon_work.c │ ├── lapacke_sgeequ.c │ ├── lapacke_sgeequ_work.c │ ├── lapacke_sgeequb.c │ ├── lapacke_sgeequb_work.c │ ├── lapacke_sgees.c │ ├── lapacke_sgees_work.c │ ├── lapacke_sgeesx.c │ ├── lapacke_sgeesx_work.c │ ├── lapacke_sgeev.c │ ├── lapacke_sgeev_work.c │ ├── lapacke_sgeevx.c │ ├── lapacke_sgeevx_work.c │ ├── lapacke_sgehrd.c │ ├── lapacke_sgehrd_work.c │ ├── lapacke_sgejsv.c │ ├── lapacke_sgejsv_work.c │ ├── lapacke_sgelq2.c │ ├── lapacke_sgelq2_work.c │ ├── lapacke_sgelqf.c │ ├── lapacke_sgelqf_work.c │ ├── lapacke_sgels.c │ ├── lapacke_sgels_work.c │ ├── lapacke_sgelsd.c │ ├── lapacke_sgelsd_work.c │ ├── lapacke_sgelss.c │ ├── lapacke_sgelss_work.c │ ├── lapacke_sgelsy.c │ ├── lapacke_sgelsy_work.c │ ├── lapacke_sgemqrt.c │ ├── lapacke_sgemqrt_work.c │ ├── lapacke_sgeqlf.c │ ├── lapacke_sgeqlf_work.c │ ├── lapacke_sgeqp3.c │ ├── lapacke_sgeqp3_work.c │ ├── lapacke_sgeqpf.c │ ├── lapacke_sgeqpf_work.c │ ├── lapacke_sgeqr2.c │ ├── lapacke_sgeqr2_work.c │ ├── lapacke_sgeqrf.c │ ├── lapacke_sgeqrf_work.c │ ├── lapacke_sgeqrfp.c │ ├── lapacke_sgeqrfp_work.c │ ├── lapacke_sgeqrt.c │ ├── lapacke_sgeqrt2.c │ ├── lapacke_sgeqrt2_work.c │ ├── lapacke_sgeqrt3.c │ ├── lapacke_sgeqrt3_work.c │ ├── lapacke_sgeqrt_work.c │ ├── lapacke_sgerfs.c │ ├── lapacke_sgerfs_work.c │ ├── lapacke_sgerfsx.c │ ├── lapacke_sgerfsx_work.c │ ├── lapacke_sgerqf.c │ ├── lapacke_sgerqf_work.c │ ├── lapacke_sgesdd.c │ ├── lapacke_sgesdd_work.c │ ├── lapacke_sgesv.c │ ├── lapacke_sgesv_work.c │ ├── lapacke_sgesvd.c │ ├── lapacke_sgesvd_work.c │ ├── lapacke_sgesvdx.c │ ├── lapacke_sgesvdx_work.c │ ├── lapacke_sgesvj.c │ ├── lapacke_sgesvj_work.c │ ├── lapacke_sgesvx.c │ ├── lapacke_sgesvx_work.c │ ├── lapacke_sgesvxx.c │ ├── lapacke_sgesvxx_work.c │ ├── lapacke_sgetf2.c │ ├── lapacke_sgetf2_work.c │ ├── lapacke_sgetrf.c │ ├── lapacke_sgetrf2.c │ ├── lapacke_sgetrf2_work.c │ ├── lapacke_sgetrf_work.c │ ├── lapacke_sgetri.c │ ├── lapacke_sgetri_work.c │ ├── lapacke_sgetrs.c │ ├── lapacke_sgetrs_work.c │ ├── lapacke_sggbak.c │ ├── lapacke_sggbak_work.c │ ├── lapacke_sggbal.c │ ├── lapacke_sggbal_work.c │ ├── lapacke_sgges.c │ ├── lapacke_sgges3.c │ ├── lapacke_sgges3_work.c │ ├── lapacke_sgges_work.c │ ├── lapacke_sggesx.c │ ├── lapacke_sggesx_work.c │ ├── lapacke_sggev.c │ ├── lapacke_sggev3.c │ ├── lapacke_sggev3_work.c │ ├── lapacke_sggev_work.c │ ├── lapacke_sggevx.c │ ├── lapacke_sggevx_work.c │ ├── lapacke_sggglm.c │ ├── lapacke_sggglm_work.c │ ├── lapacke_sgghd3.c │ ├── lapacke_sgghd3_work.c │ ├── lapacke_sgghrd.c │ ├── lapacke_sgghrd_work.c │ ├── lapacke_sgglse.c │ ├── lapacke_sgglse_work.c │ ├── lapacke_sggqrf.c │ ├── lapacke_sggqrf_work.c │ ├── lapacke_sggrqf.c │ ├── lapacke_sggrqf_work.c │ ├── lapacke_sggsvd.c │ ├── lapacke_sggsvd3.c │ ├── lapacke_sggsvd3_work.c │ ├── lapacke_sggsvd_work.c │ ├── lapacke_sggsvp.c │ ├── lapacke_sggsvp3.c │ ├── lapacke_sggsvp3_work.c │ ├── lapacke_sggsvp_work.c │ ├── lapacke_sgtcon.c │ ├── lapacke_sgtcon_work.c │ ├── lapacke_sgtrfs.c │ ├── lapacke_sgtrfs_work.c │ ├── lapacke_sgtsv.c │ ├── lapacke_sgtsv_work.c │ ├── lapacke_sgtsvx.c │ ├── lapacke_sgtsvx_work.c │ ├── lapacke_sgttrf.c │ ├── lapacke_sgttrf_work.c │ ├── lapacke_sgttrs.c │ ├── lapacke_sgttrs_work.c │ ├── lapacke_shgeqz.c │ ├── lapacke_shgeqz_work.c │ ├── lapacke_shsein.c │ ├── lapacke_shsein_work.c │ ├── lapacke_shseqr.c │ ├── lapacke_shseqr_work.c │ ├── lapacke_slacn2.c │ ├── lapacke_slacn2_work.c │ ├── lapacke_slacpy.c │ ├── lapacke_slacpy_work.c │ ├── lapacke_slag2d.c │ ├── lapacke_slag2d_work.c │ ├── lapacke_slagge.c │ ├── lapacke_slagge_work.c │ ├── lapacke_slagsy.c │ ├── lapacke_slagsy_work.c │ ├── lapacke_slamch.c │ ├── lapacke_slamch_work.c │ ├── lapacke_slange.c │ ├── lapacke_slange_work.c │ ├── lapacke_slansy.c │ ├── lapacke_slansy_work.c │ ├── lapacke_slantr.c │ ├── lapacke_slantr_work.c │ ├── lapacke_slapmr.c │ ├── lapacke_slapmr_work.c │ ├── lapacke_slapmt.c │ ├── lapacke_slapmt_work.c │ ├── lapacke_slapy2.c │ ├── lapacke_slapy2_work.c │ ├── lapacke_slapy3.c │ ├── lapacke_slapy3_work.c │ ├── lapacke_slarfb.c │ ├── lapacke_slarfb_work.c │ ├── lapacke_slarfg.c │ ├── lapacke_slarfg_work.c │ ├── lapacke_slarft.c │ ├── lapacke_slarft_work.c │ ├── lapacke_slarfx.c │ ├── lapacke_slarfx_work.c │ ├── lapacke_slarnv.c │ ├── lapacke_slarnv_work.c │ ├── lapacke_slartgp.c │ ├── lapacke_slartgp_work.c │ ├── lapacke_slartgs.c │ ├── lapacke_slartgs_work.c │ ├── lapacke_slascl.c │ ├── lapacke_slascl_work.c │ ├── lapacke_slaset.c │ ├── lapacke_slaset_work.c │ ├── lapacke_slasrt.c │ ├── lapacke_slasrt_work.c │ ├── lapacke_slaswp.c │ ├── lapacke_slaswp_work.c │ ├── lapacke_slatms.c │ ├── lapacke_slatms_work.c │ ├── lapacke_slauum.c │ ├── lapacke_slauum_work.c │ ├── lapacke_sopgtr.c │ ├── lapacke_sopgtr_work.c │ ├── lapacke_sopmtr.c │ ├── lapacke_sopmtr_work.c │ ├── lapacke_sorbdb.c │ ├── lapacke_sorbdb_work.c │ ├── lapacke_sorcsd.c │ ├── lapacke_sorcsd2by1.c │ ├── lapacke_sorcsd2by1_work.c │ ├── lapacke_sorcsd_work.c │ ├── lapacke_sorgbr.c │ ├── lapacke_sorgbr_work.c │ ├── lapacke_sorghr.c │ ├── lapacke_sorghr_work.c │ ├── lapacke_sorglq.c │ ├── lapacke_sorglq_work.c │ ├── lapacke_sorgql.c │ ├── lapacke_sorgql_work.c │ ├── lapacke_sorgqr.c │ ├── lapacke_sorgqr_work.c │ ├── lapacke_sorgrq.c │ ├── lapacke_sorgrq_work.c │ ├── lapacke_sorgtr.c │ ├── lapacke_sorgtr_work.c │ ├── lapacke_sormbr.c │ ├── lapacke_sormbr_work.c │ ├── lapacke_sormhr.c │ ├── lapacke_sormhr_work.c │ ├── lapacke_sormlq.c │ ├── lapacke_sormlq_work.c │ ├── lapacke_sormql.c │ ├── lapacke_sormql_work.c │ ├── lapacke_sormqr.c │ ├── lapacke_sormqr_work.c │ ├── lapacke_sormrq.c │ ├── lapacke_sormrq_work.c │ ├── lapacke_sormrz.c │ ├── lapacke_sormrz_work.c │ ├── lapacke_sormtr.c │ ├── lapacke_sormtr_work.c │ ├── lapacke_spbcon.c │ ├── lapacke_spbcon_work.c │ ├── lapacke_spbequ.c │ ├── lapacke_spbequ_work.c │ ├── lapacke_spbrfs.c │ ├── lapacke_spbrfs_work.c │ ├── lapacke_spbstf.c │ ├── lapacke_spbstf_work.c │ ├── lapacke_spbsv.c │ ├── lapacke_spbsv_work.c │ ├── lapacke_spbsvx.c │ ├── lapacke_spbsvx_work.c │ ├── lapacke_spbtrf.c │ ├── lapacke_spbtrf_work.c │ ├── lapacke_spbtrs.c │ ├── lapacke_spbtrs_work.c │ ├── lapacke_spftrf.c │ ├── lapacke_spftrf_work.c │ ├── lapacke_spftri.c │ ├── lapacke_spftri_work.c │ ├── lapacke_spftrs.c │ ├── lapacke_spftrs_work.c │ ├── lapacke_spocon.c │ ├── lapacke_spocon_work.c │ ├── lapacke_spoequ.c │ ├── lapacke_spoequ_work.c │ ├── lapacke_spoequb.c │ ├── lapacke_spoequb_work.c │ ├── lapacke_sporfs.c │ ├── lapacke_sporfs_work.c │ ├── lapacke_sporfsx.c │ ├── lapacke_sporfsx_work.c │ ├── lapacke_sposv.c │ ├── lapacke_sposv_work.c │ ├── lapacke_sposvx.c │ ├── lapacke_sposvx_work.c │ ├── lapacke_sposvxx.c │ ├── lapacke_sposvxx_work.c │ ├── lapacke_spotrf.c │ ├── lapacke_spotrf2.c │ ├── lapacke_spotrf2_work.c │ ├── lapacke_spotrf_work.c │ ├── lapacke_spotri.c │ ├── lapacke_spotri_work.c │ ├── lapacke_spotrs.c │ ├── lapacke_spotrs_work.c │ ├── lapacke_sppcon.c │ ├── lapacke_sppcon_work.c │ ├── lapacke_sppequ.c │ ├── lapacke_sppequ_work.c │ ├── lapacke_spprfs.c │ ├── lapacke_spprfs_work.c │ ├── lapacke_sppsv.c │ ├── lapacke_sppsv_work.c │ ├── lapacke_sppsvx.c │ ├── lapacke_sppsvx_work.c │ ├── lapacke_spptrf.c │ ├── lapacke_spptrf_work.c │ ├── lapacke_spptri.c │ ├── lapacke_spptri_work.c │ ├── lapacke_spptrs.c │ ├── lapacke_spptrs_work.c │ ├── lapacke_spstrf.c │ ├── lapacke_spstrf_work.c │ ├── lapacke_sptcon.c │ ├── lapacke_sptcon_work.c │ ├── lapacke_spteqr.c │ ├── lapacke_spteqr_work.c │ ├── lapacke_sptrfs.c │ ├── lapacke_sptrfs_work.c │ ├── lapacke_sptsv.c │ ├── lapacke_sptsv_work.c │ ├── lapacke_sptsvx.c │ ├── lapacke_sptsvx_work.c │ ├── lapacke_spttrf.c │ ├── lapacke_spttrf_work.c │ ├── lapacke_spttrs.c │ ├── lapacke_spttrs_work.c │ ├── lapacke_ssbev.c │ ├── lapacke_ssbev_work.c │ ├── lapacke_ssbevd.c │ ├── lapacke_ssbevd_work.c │ ├── lapacke_ssbevx.c │ ├── lapacke_ssbevx_work.c │ ├── lapacke_ssbgst.c │ ├── lapacke_ssbgst_work.c │ ├── lapacke_ssbgv.c │ ├── lapacke_ssbgv_work.c │ ├── lapacke_ssbgvd.c │ ├── lapacke_ssbgvd_work.c │ ├── lapacke_ssbgvx.c │ ├── lapacke_ssbgvx_work.c │ ├── lapacke_ssbtrd.c │ ├── lapacke_ssbtrd_work.c │ ├── lapacke_ssfrk.c │ ├── lapacke_ssfrk_work.c │ ├── lapacke_sspcon.c │ ├── lapacke_sspcon_work.c │ ├── lapacke_sspev.c │ ├── lapacke_sspev_work.c │ ├── lapacke_sspevd.c │ ├── lapacke_sspevd_work.c │ ├── lapacke_sspevx.c │ ├── lapacke_sspevx_work.c │ ├── lapacke_sspgst.c │ ├── lapacke_sspgst_work.c │ ├── lapacke_sspgv.c │ ├── lapacke_sspgv_work.c │ ├── lapacke_sspgvd.c │ ├── lapacke_sspgvd_work.c │ ├── lapacke_sspgvx.c │ ├── lapacke_sspgvx_work.c │ ├── lapacke_ssprfs.c │ ├── lapacke_ssprfs_work.c │ ├── lapacke_sspsv.c │ ├── lapacke_sspsv_work.c │ ├── lapacke_sspsvx.c │ ├── lapacke_sspsvx_work.c │ ├── lapacke_ssptrd.c │ ├── lapacke_ssptrd_work.c │ ├── lapacke_ssptrf.c │ ├── lapacke_ssptrf_work.c │ ├── lapacke_ssptri.c │ ├── lapacke_ssptri_work.c │ ├── lapacke_ssptrs.c │ ├── lapacke_ssptrs_work.c │ ├── lapacke_sstebz.c │ ├── lapacke_sstebz_work.c │ ├── lapacke_sstedc.c │ ├── lapacke_sstedc_work.c │ ├── lapacke_sstegr.c │ ├── lapacke_sstegr_work.c │ ├── lapacke_sstein.c │ ├── lapacke_sstein_work.c │ ├── lapacke_sstemr.c │ ├── lapacke_sstemr_work.c │ ├── lapacke_ssteqr.c │ ├── lapacke_ssteqr_work.c │ ├── lapacke_ssterf.c │ ├── lapacke_ssterf_work.c │ ├── lapacke_sstev.c │ ├── lapacke_sstev_work.c │ ├── lapacke_sstevd.c │ ├── lapacke_sstevd_work.c │ ├── lapacke_sstevr.c │ ├── lapacke_sstevr_work.c │ ├── lapacke_sstevx.c │ ├── lapacke_sstevx_work.c │ ├── lapacke_ssycon.c │ ├── lapacke_ssycon_work.c │ ├── lapacke_ssyconv.c │ ├── lapacke_ssyconv_work.c │ ├── lapacke_ssyequb.c │ ├── lapacke_ssyequb_work.c │ ├── lapacke_ssyev.c │ ├── lapacke_ssyev_work.c │ ├── lapacke_ssyevd.c │ ├── lapacke_ssyevd_work.c │ ├── lapacke_ssyevr.c │ ├── lapacke_ssyevr_work.c │ ├── lapacke_ssyevx.c │ ├── lapacke_ssyevx_work.c │ ├── lapacke_ssygst.c │ ├── lapacke_ssygst_work.c │ ├── lapacke_ssygv.c │ ├── lapacke_ssygv_work.c │ ├── lapacke_ssygvd.c │ ├── lapacke_ssygvd_work.c │ ├── lapacke_ssygvx.c │ ├── lapacke_ssygvx_work.c │ ├── lapacke_ssyrfs.c │ ├── lapacke_ssyrfs_work.c │ ├── lapacke_ssyrfsx.c │ ├── lapacke_ssyrfsx_work.c │ ├── lapacke_ssysv.c │ ├── lapacke_ssysv_rook.c │ ├── lapacke_ssysv_rook_work.c │ ├── lapacke_ssysv_work.c │ ├── lapacke_ssysvx.c │ ├── lapacke_ssysvx_work.c │ ├── lapacke_ssysvxx.c │ ├── lapacke_ssysvxx_work.c │ ├── lapacke_ssyswapr.c │ ├── lapacke_ssyswapr_work.c │ ├── lapacke_ssytrd.c │ ├── lapacke_ssytrd_work.c │ ├── lapacke_ssytrf.c │ ├── lapacke_ssytrf_rook.c │ ├── lapacke_ssytrf_rook_work.c │ ├── lapacke_ssytrf_work.c │ ├── lapacke_ssytri.c │ ├── lapacke_ssytri2.c │ ├── lapacke_ssytri2_work.c │ ├── lapacke_ssytri2x.c │ ├── lapacke_ssytri2x_work.c │ ├── lapacke_ssytri_work.c │ ├── lapacke_ssytrs.c │ ├── lapacke_ssytrs2.c │ ├── lapacke_ssytrs2_work.c │ ├── lapacke_ssytrs_rook.c │ ├── lapacke_ssytrs_rook_work.c │ ├── lapacke_ssytrs_work.c │ ├── lapacke_stbcon.c │ ├── lapacke_stbcon_work.c │ ├── lapacke_stbrfs.c │ ├── lapacke_stbrfs_work.c │ ├── lapacke_stbtrs.c │ ├── lapacke_stbtrs_work.c │ ├── lapacke_stfsm.c │ ├── lapacke_stfsm_work.c │ ├── lapacke_stftri.c │ ├── lapacke_stftri_work.c │ ├── lapacke_stfttp.c │ ├── lapacke_stfttp_work.c │ ├── lapacke_stfttr.c │ ├── lapacke_stfttr_work.c │ ├── lapacke_stgevc.c │ ├── lapacke_stgevc_work.c │ ├── lapacke_stgexc.c │ ├── lapacke_stgexc_work.c │ ├── lapacke_stgsen.c │ ├── lapacke_stgsen_work.c │ ├── lapacke_stgsja.c │ ├── lapacke_stgsja_work.c │ ├── lapacke_stgsna.c │ ├── lapacke_stgsna_work.c │ ├── lapacke_stgsyl.c │ ├── lapacke_stgsyl_work.c │ ├── lapacke_stpcon.c │ ├── lapacke_stpcon_work.c │ ├── lapacke_stpmqrt.c │ ├── lapacke_stpmqrt_work.c │ ├── lapacke_stpqrt.c │ ├── lapacke_stpqrt2.c │ ├── lapacke_stpqrt2_work.c │ ├── lapacke_stpqrt_work.c │ ├── lapacke_stprfb.c │ ├── lapacke_stprfb_work.c │ ├── lapacke_stprfs.c │ ├── lapacke_stprfs_work.c │ ├── lapacke_stptri.c │ ├── lapacke_stptri_work.c │ ├── lapacke_stptrs.c │ ├── lapacke_stptrs_work.c │ ├── lapacke_stpttf.c │ ├── lapacke_stpttf_work.c │ ├── lapacke_stpttr.c │ ├── lapacke_stpttr_work.c │ ├── lapacke_strcon.c │ ├── lapacke_strcon_work.c │ ├── lapacke_strevc.c │ ├── lapacke_strevc_work.c │ ├── lapacke_strexc.c │ ├── lapacke_strexc_work.c │ ├── lapacke_strrfs.c │ ├── lapacke_strrfs_work.c │ ├── lapacke_strsen.c │ ├── lapacke_strsen_work.c │ ├── lapacke_strsna.c │ ├── lapacke_strsna_work.c │ ├── lapacke_strsyl.c │ ├── lapacke_strsyl_work.c │ ├── lapacke_strtri.c │ ├── lapacke_strtri_work.c │ ├── lapacke_strtrs.c │ ├── lapacke_strtrs_work.c │ ├── lapacke_strttf.c │ ├── lapacke_strttf_work.c │ ├── lapacke_strttp.c │ ├── lapacke_strttp_work.c │ ├── lapacke_stzrzf.c │ ├── lapacke_stzrzf_work.c │ ├── lapacke_zbbcsd.c │ ├── lapacke_zbbcsd_work.c │ ├── lapacke_zbdsqr.c │ ├── lapacke_zbdsqr_work.c │ ├── lapacke_zcgesv.c │ ├── lapacke_zcgesv_work.c │ ├── lapacke_zcposv.c │ ├── lapacke_zcposv_work.c │ ├── lapacke_zgbbrd.c │ ├── lapacke_zgbbrd_work.c │ ├── lapacke_zgbcon.c │ ├── lapacke_zgbcon_work.c │ ├── lapacke_zgbequ.c │ ├── lapacke_zgbequ_work.c │ ├── lapacke_zgbequb.c │ ├── lapacke_zgbequb_work.c │ ├── lapacke_zgbrfs.c │ ├── lapacke_zgbrfs_work.c │ ├── lapacke_zgbrfsx.c │ ├── lapacke_zgbrfsx_work.c │ ├── lapacke_zgbsv.c │ ├── lapacke_zgbsv_work.c │ ├── lapacke_zgbsvx.c │ ├── lapacke_zgbsvx_work.c │ ├── lapacke_zgbsvxx.c │ ├── lapacke_zgbsvxx_work.c │ ├── lapacke_zgbtrf.c │ ├── lapacke_zgbtrf_work.c │ ├── lapacke_zgbtrs.c │ ├── lapacke_zgbtrs_work.c │ ├── lapacke_zgebak.c │ ├── lapacke_zgebak_work.c │ ├── lapacke_zgebal.c │ ├── lapacke_zgebal_work.c │ ├── lapacke_zgebrd.c │ ├── lapacke_zgebrd_work.c │ ├── lapacke_zgecon.c │ ├── lapacke_zgecon_work.c │ ├── lapacke_zgeequ.c │ ├── lapacke_zgeequ_work.c │ ├── lapacke_zgeequb.c │ ├── lapacke_zgeequb_work.c │ ├── lapacke_zgees.c │ ├── lapacke_zgees_work.c │ ├── lapacke_zgeesx.c │ ├── lapacke_zgeesx_work.c │ ├── lapacke_zgeev.c │ ├── lapacke_zgeev_work.c │ ├── lapacke_zgeevx.c │ ├── lapacke_zgeevx_work.c │ ├── lapacke_zgehrd.c │ ├── lapacke_zgehrd_work.c │ ├── lapacke_zgejsv.c │ ├── lapacke_zgejsv_work.c │ ├── lapacke_zgelq2.c │ ├── lapacke_zgelq2_work.c │ ├── lapacke_zgelqf.c │ ├── lapacke_zgelqf_work.c │ ├── lapacke_zgels.c │ ├── lapacke_zgels_work.c │ ├── lapacke_zgelsd.c │ ├── lapacke_zgelsd_work.c │ ├── lapacke_zgelss.c │ ├── lapacke_zgelss_work.c │ ├── lapacke_zgelsy.c │ ├── lapacke_zgelsy_work.c │ ├── lapacke_zgemqrt.c │ ├── lapacke_zgemqrt_work.c │ ├── lapacke_zgeqlf.c │ ├── lapacke_zgeqlf_work.c │ ├── lapacke_zgeqp3.c │ ├── lapacke_zgeqp3_work.c │ ├── lapacke_zgeqpf.c │ ├── lapacke_zgeqpf_work.c │ ├── lapacke_zgeqr2.c │ ├── lapacke_zgeqr2_work.c │ ├── lapacke_zgeqrf.c │ ├── lapacke_zgeqrf_work.c │ ├── lapacke_zgeqrfp.c │ ├── lapacke_zgeqrfp_work.c │ ├── lapacke_zgeqrt.c │ ├── lapacke_zgeqrt2.c │ ├── lapacke_zgeqrt2_work.c │ ├── lapacke_zgeqrt3.c │ ├── lapacke_zgeqrt3_work.c │ ├── lapacke_zgeqrt_work.c │ ├── lapacke_zgerfs.c │ ├── lapacke_zgerfs_work.c │ ├── lapacke_zgerfsx.c │ ├── lapacke_zgerfsx_work.c │ ├── lapacke_zgerqf.c │ ├── lapacke_zgerqf_work.c │ ├── lapacke_zgesdd.c │ ├── lapacke_zgesdd_work.c │ ├── lapacke_zgesv.c │ ├── lapacke_zgesv_work.c │ ├── lapacke_zgesvd.c │ ├── lapacke_zgesvd_work.c │ ├── lapacke_zgesvdx.c │ ├── lapacke_zgesvdx_work.c │ ├── lapacke_zgesvj.c │ ├── lapacke_zgesvj_work.c │ ├── lapacke_zgesvx.c │ ├── lapacke_zgesvx_work.c │ ├── lapacke_zgesvxx.c │ ├── lapacke_zgesvxx_work.c │ ├── lapacke_zgetf2.c │ ├── lapacke_zgetf2_work.c │ ├── lapacke_zgetrf.c │ ├── lapacke_zgetrf2.c │ ├── lapacke_zgetrf2_work.c │ ├── lapacke_zgetrf_work.c │ ├── lapacke_zgetri.c │ ├── lapacke_zgetri_work.c │ ├── lapacke_zgetrs.c │ ├── lapacke_zgetrs_work.c │ ├── lapacke_zggbak.c │ ├── lapacke_zggbak_work.c │ ├── lapacke_zggbal.c │ ├── lapacke_zggbal_work.c │ ├── lapacke_zgges.c │ ├── lapacke_zgges3.c │ ├── lapacke_zgges3_work.c │ ├── lapacke_zgges_work.c │ ├── lapacke_zggesx.c │ ├── lapacke_zggesx_work.c │ ├── lapacke_zggev.c │ ├── lapacke_zggev3.c │ ├── lapacke_zggev3_work.c │ ├── lapacke_zggev_work.c │ ├── lapacke_zggevx.c │ ├── lapacke_zggevx_work.c │ ├── lapacke_zggglm.c │ ├── lapacke_zggglm_work.c │ ├── lapacke_zgghd3.c │ ├── lapacke_zgghd3_work.c │ ├── lapacke_zgghrd.c │ ├── lapacke_zgghrd_work.c │ ├── lapacke_zgglse.c │ ├── lapacke_zgglse_work.c │ ├── lapacke_zggqrf.c │ ├── lapacke_zggqrf_work.c │ ├── lapacke_zggrqf.c │ ├── lapacke_zggrqf_work.c │ ├── lapacke_zggsvd.c │ ├── lapacke_zggsvd3.c │ ├── lapacke_zggsvd3_work.c │ ├── lapacke_zggsvd_work.c │ ├── lapacke_zggsvp.c │ ├── lapacke_zggsvp3.c │ ├── lapacke_zggsvp3_work.c │ ├── lapacke_zggsvp_work.c │ ├── lapacke_zgtcon.c │ ├── lapacke_zgtcon_work.c │ ├── lapacke_zgtrfs.c │ ├── lapacke_zgtrfs_work.c │ ├── lapacke_zgtsv.c │ ├── lapacke_zgtsv_work.c │ ├── lapacke_zgtsvx.c │ ├── lapacke_zgtsvx_work.c │ ├── lapacke_zgttrf.c │ ├── lapacke_zgttrf_work.c │ ├── lapacke_zgttrs.c │ ├── lapacke_zgttrs_work.c │ ├── lapacke_zhbev.c │ ├── lapacke_zhbev_work.c │ ├── lapacke_zhbevd.c │ ├── lapacke_zhbevd_work.c │ ├── lapacke_zhbevx.c │ ├── lapacke_zhbevx_work.c │ ├── lapacke_zhbgst.c │ ├── lapacke_zhbgst_work.c │ ├── lapacke_zhbgv.c │ ├── lapacke_zhbgv_work.c │ ├── lapacke_zhbgvd.c │ ├── lapacke_zhbgvd_work.c │ ├── lapacke_zhbgvx.c │ ├── lapacke_zhbgvx_work.c │ ├── lapacke_zhbtrd.c │ ├── lapacke_zhbtrd_work.c │ ├── lapacke_zhecon.c │ ├── lapacke_zhecon_work.c │ ├── lapacke_zheequb.c │ ├── lapacke_zheequb_work.c │ ├── lapacke_zheev.c │ ├── lapacke_zheev_work.c │ ├── lapacke_zheevd.c │ ├── lapacke_zheevd_work.c │ ├── lapacke_zheevr.c │ ├── lapacke_zheevr_work.c │ ├── lapacke_zheevx.c │ ├── lapacke_zheevx_work.c │ ├── lapacke_zhegst.c │ ├── lapacke_zhegst_work.c │ ├── lapacke_zhegv.c │ ├── lapacke_zhegv_work.c │ ├── lapacke_zhegvd.c │ ├── lapacke_zhegvd_work.c │ ├── lapacke_zhegvx.c │ ├── lapacke_zhegvx_work.c │ ├── lapacke_zherfs.c │ ├── lapacke_zherfs_work.c │ ├── lapacke_zherfsx.c │ ├── lapacke_zherfsx_work.c │ ├── lapacke_zhesv.c │ ├── lapacke_zhesv_work.c │ ├── lapacke_zhesvx.c │ ├── lapacke_zhesvx_work.c │ ├── lapacke_zhesvxx.c │ ├── lapacke_zhesvxx_work.c │ ├── lapacke_zheswapr.c │ ├── lapacke_zheswapr_work.c │ ├── lapacke_zhetrd.c │ ├── lapacke_zhetrd_work.c │ ├── lapacke_zhetrf.c │ ├── lapacke_zhetrf_rook.c │ ├── lapacke_zhetrf_rook_work.c │ ├── lapacke_zhetrf_work.c │ ├── lapacke_zhetri.c │ ├── lapacke_zhetri2.c │ ├── lapacke_zhetri2_work.c │ ├── lapacke_zhetri2x.c │ ├── lapacke_zhetri2x_work.c │ ├── lapacke_zhetri_work.c │ ├── lapacke_zhetrs.c │ ├── lapacke_zhetrs2.c │ ├── lapacke_zhetrs2_work.c │ ├── lapacke_zhetrs_rook.c │ ├── lapacke_zhetrs_rook_work.c │ ├── lapacke_zhetrs_work.c │ ├── lapacke_zhfrk.c │ ├── lapacke_zhfrk_work.c │ ├── lapacke_zhgeqz.c │ ├── lapacke_zhgeqz_work.c │ ├── lapacke_zhpcon.c │ ├── lapacke_zhpcon_work.c │ ├── lapacke_zhpev.c │ ├── lapacke_zhpev_work.c │ ├── lapacke_zhpevd.c │ ├── lapacke_zhpevd_work.c │ ├── lapacke_zhpevx.c │ ├── lapacke_zhpevx_work.c │ ├── lapacke_zhpgst.c │ ├── lapacke_zhpgst_work.c │ ├── lapacke_zhpgv.c │ ├── lapacke_zhpgv_work.c │ ├── lapacke_zhpgvd.c │ ├── lapacke_zhpgvd_work.c │ ├── lapacke_zhpgvx.c │ ├── lapacke_zhpgvx_work.c │ ├── lapacke_zhprfs.c │ ├── lapacke_zhprfs_work.c │ ├── lapacke_zhpsv.c │ ├── lapacke_zhpsv_work.c │ ├── lapacke_zhpsvx.c │ ├── lapacke_zhpsvx_work.c │ ├── lapacke_zhptrd.c │ ├── lapacke_zhptrd_work.c │ ├── lapacke_zhptrf.c │ ├── lapacke_zhptrf_work.c │ ├── lapacke_zhptri.c │ ├── lapacke_zhptri_work.c │ ├── lapacke_zhptrs.c │ ├── lapacke_zhptrs_work.c │ ├── lapacke_zhsein.c │ ├── lapacke_zhsein_work.c │ ├── lapacke_zhseqr.c │ ├── lapacke_zhseqr_work.c │ ├── lapacke_zlacgv.c │ ├── lapacke_zlacgv_work.c │ ├── lapacke_zlacn2.c │ ├── lapacke_zlacn2_work.c │ ├── lapacke_zlacp2.c │ ├── lapacke_zlacp2_work.c │ ├── lapacke_zlacpy.c │ ├── lapacke_zlacpy_work.c │ ├── lapacke_zlag2c.c │ ├── lapacke_zlag2c_work.c │ ├── lapacke_zlagge.c │ ├── lapacke_zlagge_work.c │ ├── lapacke_zlaghe.c │ ├── lapacke_zlaghe_work.c │ ├── lapacke_zlagsy.c │ ├── lapacke_zlagsy_work.c │ ├── lapacke_zlange.c │ ├── lapacke_zlange_work.c │ ├── lapacke_zlanhe.c │ ├── lapacke_zlanhe_work.c │ ├── lapacke_zlansy.c │ ├── lapacke_zlansy_work.c │ ├── lapacke_zlantr.c │ ├── lapacke_zlantr_work.c │ ├── lapacke_zlapmr.c │ ├── lapacke_zlapmr_work.c │ ├── lapacke_zlapmt.c │ ├── lapacke_zlapmt_work.c │ ├── lapacke_zlarfb.c │ ├── lapacke_zlarfb_work.c │ ├── lapacke_zlarfg.c │ ├── lapacke_zlarfg_work.c │ ├── lapacke_zlarft.c │ ├── lapacke_zlarft_work.c │ ├── lapacke_zlarfx.c │ ├── lapacke_zlarfx_work.c │ ├── lapacke_zlarnv.c │ ├── lapacke_zlarnv_work.c │ ├── lapacke_zlascl.c │ ├── lapacke_zlascl_work.c │ ├── lapacke_zlaset.c │ ├── lapacke_zlaset_work.c │ ├── lapacke_zlaswp.c │ ├── lapacke_zlaswp_work.c │ ├── lapacke_zlatms.c │ ├── lapacke_zlatms_work.c │ ├── lapacke_zlauum.c │ ├── lapacke_zlauum_work.c │ ├── lapacke_zpbcon.c │ ├── lapacke_zpbcon_work.c │ ├── lapacke_zpbequ.c │ ├── lapacke_zpbequ_work.c │ ├── lapacke_zpbrfs.c │ ├── lapacke_zpbrfs_work.c │ ├── lapacke_zpbstf.c │ ├── lapacke_zpbstf_work.c │ ├── lapacke_zpbsv.c │ ├── lapacke_zpbsv_work.c │ ├── lapacke_zpbsvx.c │ ├── lapacke_zpbsvx_work.c │ ├── lapacke_zpbtrf.c │ ├── lapacke_zpbtrf_work.c │ ├── lapacke_zpbtrs.c │ ├── lapacke_zpbtrs_work.c │ ├── lapacke_zpftrf.c │ ├── lapacke_zpftrf_work.c │ ├── lapacke_zpftri.c │ ├── lapacke_zpftri_work.c │ ├── lapacke_zpftrs.c │ ├── lapacke_zpftrs_work.c │ ├── lapacke_zpocon.c │ ├── lapacke_zpocon_work.c │ ├── lapacke_zpoequ.c │ ├── lapacke_zpoequ_work.c │ ├── lapacke_zpoequb.c │ ├── lapacke_zpoequb_work.c │ ├── lapacke_zporfs.c │ ├── lapacke_zporfs_work.c │ ├── lapacke_zporfsx.c │ ├── lapacke_zporfsx_work.c │ ├── lapacke_zposv.c │ ├── lapacke_zposv_work.c │ ├── lapacke_zposvx.c │ ├── lapacke_zposvx_work.c │ ├── lapacke_zposvxx.c │ ├── lapacke_zposvxx_work.c │ ├── lapacke_zpotrf.c │ ├── lapacke_zpotrf2.c │ ├── lapacke_zpotrf2_work.c │ ├── lapacke_zpotrf_work.c │ ├── lapacke_zpotri.c │ ├── lapacke_zpotri_work.c │ ├── lapacke_zpotrs.c │ ├── lapacke_zpotrs_work.c │ ├── lapacke_zppcon.c │ ├── lapacke_zppcon_work.c │ ├── lapacke_zppequ.c │ ├── lapacke_zppequ_work.c │ ├── lapacke_zpprfs.c │ ├── lapacke_zpprfs_work.c │ ├── lapacke_zppsv.c │ ├── lapacke_zppsv_work.c │ ├── lapacke_zppsvx.c │ ├── lapacke_zppsvx_work.c │ ├── lapacke_zpptrf.c │ ├── lapacke_zpptrf_work.c │ ├── lapacke_zpptri.c │ ├── lapacke_zpptri_work.c │ ├── lapacke_zpptrs.c │ ├── lapacke_zpptrs_work.c │ ├── lapacke_zpstrf.c │ ├── lapacke_zpstrf_work.c │ ├── lapacke_zptcon.c │ ├── lapacke_zptcon_work.c │ ├── lapacke_zpteqr.c │ ├── lapacke_zpteqr_work.c │ ├── lapacke_zptrfs.c │ ├── lapacke_zptrfs_work.c │ ├── lapacke_zptsv.c │ ├── lapacke_zptsv_work.c │ ├── lapacke_zptsvx.c │ ├── lapacke_zptsvx_work.c │ ├── lapacke_zpttrf.c │ ├── lapacke_zpttrf_work.c │ ├── lapacke_zpttrs.c │ ├── lapacke_zpttrs_work.c │ ├── lapacke_zspcon.c │ ├── lapacke_zspcon_work.c │ ├── lapacke_zsprfs.c │ ├── lapacke_zsprfs_work.c │ ├── lapacke_zspsv.c │ ├── lapacke_zspsv_work.c │ ├── lapacke_zspsvx.c │ ├── lapacke_zspsvx_work.c │ ├── lapacke_zsptrf.c │ ├── lapacke_zsptrf_work.c │ ├── lapacke_zsptri.c │ ├── lapacke_zsptri_work.c │ ├── lapacke_zsptrs.c │ ├── lapacke_zsptrs_work.c │ ├── lapacke_zstedc.c │ ├── lapacke_zstedc_work.c │ ├── lapacke_zstegr.c │ ├── lapacke_zstegr_work.c │ ├── lapacke_zstein.c │ ├── lapacke_zstein_work.c │ ├── lapacke_zstemr.c │ ├── lapacke_zstemr_work.c │ ├── lapacke_zsteqr.c │ ├── lapacke_zsteqr_work.c │ ├── lapacke_zsycon.c │ ├── lapacke_zsycon_work.c │ ├── lapacke_zsyconv.c │ ├── lapacke_zsyconv_work.c │ ├── lapacke_zsyequb.c │ ├── lapacke_zsyequb_work.c │ ├── lapacke_zsyr.c │ ├── lapacke_zsyr_work.c │ ├── lapacke_zsyrfs.c │ ├── lapacke_zsyrfs_work.c │ ├── lapacke_zsyrfsx.c │ ├── lapacke_zsyrfsx_work.c │ ├── lapacke_zsysv.c │ ├── lapacke_zsysv_rook.c │ ├── lapacke_zsysv_rook_work.c │ ├── lapacke_zsysv_work.c │ ├── lapacke_zsysvx.c │ ├── lapacke_zsysvx_work.c │ ├── lapacke_zsysvxx.c │ ├── lapacke_zsysvxx_work.c │ ├── lapacke_zsyswapr.c │ ├── lapacke_zsyswapr_work.c │ ├── lapacke_zsytrf.c │ ├── lapacke_zsytrf_rook.c │ ├── lapacke_zsytrf_rook_work.c │ ├── lapacke_zsytrf_work.c │ ├── lapacke_zsytri.c │ ├── lapacke_zsytri2.c │ ├── lapacke_zsytri2_work.c │ ├── lapacke_zsytri2x.c │ ├── lapacke_zsytri2x_work.c │ ├── lapacke_zsytri_work.c │ ├── lapacke_zsytrs.c │ ├── lapacke_zsytrs2.c │ ├── lapacke_zsytrs2_work.c │ ├── lapacke_zsytrs_rook.c │ ├── lapacke_zsytrs_rook_work.c │ ├── lapacke_zsytrs_work.c │ ├── lapacke_ztbcon.c │ ├── lapacke_ztbcon_work.c │ ├── lapacke_ztbrfs.c │ ├── lapacke_ztbrfs_work.c │ ├── lapacke_ztbtrs.c │ ├── lapacke_ztbtrs_work.c │ ├── lapacke_ztfsm.c │ ├── lapacke_ztfsm_work.c │ ├── lapacke_ztftri.c │ ├── lapacke_ztftri_work.c │ ├── lapacke_ztfttp.c │ ├── lapacke_ztfttp_work.c │ ├── lapacke_ztfttr.c │ ├── lapacke_ztfttr_work.c │ ├── lapacke_ztgevc.c │ ├── lapacke_ztgevc_work.c │ ├── lapacke_ztgexc.c │ ├── lapacke_ztgexc_work.c │ ├── lapacke_ztgsen.c │ ├── lapacke_ztgsen_work.c │ ├── lapacke_ztgsja.c │ ├── lapacke_ztgsja_work.c │ ├── lapacke_ztgsna.c │ ├── lapacke_ztgsna_work.c │ ├── lapacke_ztgsyl.c │ ├── lapacke_ztgsyl_work.c │ ├── lapacke_ztpcon.c │ ├── lapacke_ztpcon_work.c │ ├── lapacke_ztpmqrt.c │ ├── lapacke_ztpmqrt_work.c │ ├── lapacke_ztpqrt.c │ ├── lapacke_ztpqrt2.c │ ├── lapacke_ztpqrt2_work.c │ ├── lapacke_ztpqrt_work.c │ ├── lapacke_ztprfb.c │ ├── lapacke_ztprfb_work.c │ ├── lapacke_ztprfs.c │ ├── lapacke_ztprfs_work.c │ ├── lapacke_ztptri.c │ ├── lapacke_ztptri_work.c │ ├── lapacke_ztptrs.c │ ├── lapacke_ztptrs_work.c │ ├── lapacke_ztpttf.c │ ├── lapacke_ztpttf_work.c │ ├── lapacke_ztpttr.c │ ├── lapacke_ztpttr_work.c │ ├── lapacke_ztrcon.c │ ├── lapacke_ztrcon_work.c │ ├── lapacke_ztrevc.c │ ├── lapacke_ztrevc_work.c │ ├── lapacke_ztrexc.c │ ├── lapacke_ztrexc_work.c │ ├── lapacke_ztrrfs.c │ ├── lapacke_ztrrfs_work.c │ ├── lapacke_ztrsen.c │ ├── lapacke_ztrsen_work.c │ ├── lapacke_ztrsna.c │ ├── lapacke_ztrsna_work.c │ ├── lapacke_ztrsyl.c │ ├── lapacke_ztrsyl_work.c │ ├── lapacke_ztrtri.c │ ├── lapacke_ztrtri_work.c │ ├── lapacke_ztrtrs.c │ ├── lapacke_ztrtrs_work.c │ ├── lapacke_ztrttf.c │ ├── lapacke_ztrttf_work.c │ ├── lapacke_ztrttp.c │ ├── lapacke_ztrttp_work.c │ ├── lapacke_ztzrzf.c │ ├── lapacke_ztzrzf_work.c │ ├── lapacke_zunbdb.c │ ├── lapacke_zunbdb_work.c │ ├── lapacke_zuncsd.c │ ├── lapacke_zuncsd2by1.c │ ├── lapacke_zuncsd2by1_work.c │ ├── lapacke_zuncsd_work.c │ ├── lapacke_zungbr.c │ ├── lapacke_zungbr_work.c │ ├── lapacke_zunghr.c │ ├── lapacke_zunghr_work.c │ ├── lapacke_zunglq.c │ ├── lapacke_zunglq_work.c │ ├── lapacke_zungql.c │ ├── lapacke_zungql_work.c │ ├── lapacke_zungqr.c │ ├── lapacke_zungqr_work.c │ ├── lapacke_zungrq.c │ ├── lapacke_zungrq_work.c │ ├── lapacke_zungtr.c │ ├── lapacke_zungtr_work.c │ ├── lapacke_zunmbr.c │ ├── lapacke_zunmbr_work.c │ ├── lapacke_zunmhr.c │ ├── lapacke_zunmhr_work.c │ ├── lapacke_zunmlq.c │ ├── lapacke_zunmlq_work.c │ ├── lapacke_zunmql.c │ ├── lapacke_zunmql_work.c │ ├── lapacke_zunmqr.c │ ├── lapacke_zunmqr_work.c │ ├── lapacke_zunmrq.c │ ├── lapacke_zunmrq_work.c │ ├── lapacke_zunmrz.c │ ├── lapacke_zunmrz_work.c │ ├── lapacke_zunmtr.c │ ├── lapacke_zunmtr_work.c │ ├── lapacke_zupgtr.c │ ├── lapacke_zupgtr_work.c │ ├── lapacke_zupmtr.c │ └── lapacke_zupmtr_work.c └── utils │ ├── CMakeLists.txt │ ├── Makefile │ ├── lapacke_c_nancheck.c │ ├── lapacke_cgb_nancheck.c │ ├── lapacke_cgb_trans.c │ ├── lapacke_cge_nancheck.c │ ├── lapacke_cge_trans.c │ ├── lapacke_cgg_nancheck.c │ ├── lapacke_cgg_trans.c │ ├── lapacke_cgt_nancheck.c │ ├── lapacke_chb_nancheck.c │ ├── lapacke_chb_trans.c │ ├── lapacke_che_nancheck.c │ ├── lapacke_che_trans.c │ ├── lapacke_chp_nancheck.c │ ├── lapacke_chp_trans.c │ ├── lapacke_chs_nancheck.c │ ├── lapacke_chs_trans.c │ ├── lapacke_cpb_nancheck.c │ ├── lapacke_cpb_trans.c │ ├── lapacke_cpf_nancheck.c │ ├── lapacke_cpf_trans.c │ ├── lapacke_cpo_nancheck.c │ ├── lapacke_cpo_trans.c │ ├── lapacke_cpp_nancheck.c │ ├── lapacke_cpp_trans.c │ ├── lapacke_cpt_nancheck.c │ ├── lapacke_csp_nancheck.c │ ├── lapacke_csp_trans.c │ ├── lapacke_cst_nancheck.c │ ├── lapacke_csy_nancheck.c │ ├── lapacke_csy_trans.c │ ├── lapacke_ctb_nancheck.c │ ├── lapacke_ctb_trans.c │ ├── lapacke_ctf_nancheck.c │ ├── lapacke_ctf_trans.c │ ├── lapacke_ctp_nancheck.c │ ├── lapacke_ctp_trans.c │ ├── lapacke_ctr_nancheck.c │ ├── lapacke_ctr_trans.c │ ├── lapacke_d_nancheck.c │ ├── lapacke_dgb_nancheck.c │ ├── lapacke_dgb_trans.c │ ├── lapacke_dge_nancheck.c │ ├── lapacke_dge_trans.c │ ├── lapacke_dgg_nancheck.c │ ├── lapacke_dgg_trans.c │ ├── lapacke_dgt_nancheck.c │ ├── lapacke_dhs_nancheck.c │ ├── lapacke_dhs_trans.c │ ├── lapacke_dpb_nancheck.c │ ├── lapacke_dpb_trans.c │ ├── lapacke_dpf_nancheck.c │ ├── lapacke_dpf_trans.c │ ├── lapacke_dpo_nancheck.c │ ├── lapacke_dpo_trans.c │ ├── lapacke_dpp_nancheck.c │ ├── lapacke_dpp_trans.c │ ├── lapacke_dpt_nancheck.c │ ├── lapacke_dsb_nancheck.c │ ├── lapacke_dsb_trans.c │ ├── lapacke_dsp_nancheck.c │ ├── lapacke_dsp_trans.c │ ├── lapacke_dst_nancheck.c │ ├── lapacke_dsy_nancheck.c │ ├── lapacke_dsy_trans.c │ ├── lapacke_dtb_nancheck.c │ ├── lapacke_dtb_trans.c │ ├── lapacke_dtf_nancheck.c │ ├── lapacke_dtf_trans.c │ ├── lapacke_dtp_nancheck.c │ ├── lapacke_dtp_trans.c │ ├── lapacke_dtr_nancheck.c │ ├── lapacke_dtr_trans.c │ ├── lapacke_lsame.c │ ├── lapacke_make_complex_double.c │ ├── lapacke_make_complex_float.c │ ├── lapacke_s_nancheck.c │ ├── lapacke_sgb_nancheck.c │ ├── lapacke_sgb_trans.c │ ├── lapacke_sge_nancheck.c │ ├── lapacke_sge_trans.c │ ├── lapacke_sgg_nancheck.c │ ├── lapacke_sgg_trans.c │ ├── lapacke_sgt_nancheck.c │ ├── lapacke_shs_nancheck.c │ ├── lapacke_shs_trans.c │ ├── lapacke_spb_nancheck.c │ ├── lapacke_spb_trans.c │ ├── lapacke_spf_nancheck.c │ ├── lapacke_spf_trans.c │ ├── lapacke_spo_nancheck.c │ ├── lapacke_spo_trans.c │ ├── lapacke_spp_nancheck.c │ ├── lapacke_spp_trans.c │ ├── lapacke_spt_nancheck.c │ ├── lapacke_ssb_nancheck.c │ ├── lapacke_ssb_trans.c │ ├── lapacke_ssp_nancheck.c │ ├── lapacke_ssp_trans.c │ ├── lapacke_sst_nancheck.c │ ├── lapacke_ssy_nancheck.c │ ├── lapacke_ssy_trans.c │ ├── lapacke_stb_nancheck.c │ ├── lapacke_stb_trans.c │ ├── lapacke_stf_nancheck.c │ ├── lapacke_stf_trans.c │ ├── lapacke_stp_nancheck.c │ ├── lapacke_stp_trans.c │ ├── lapacke_str_nancheck.c │ ├── lapacke_str_trans.c │ ├── lapacke_xerbla.c │ ├── lapacke_z_nancheck.c │ ├── lapacke_zgb_nancheck.c │ ├── lapacke_zgb_trans.c │ ├── lapacke_zge_nancheck.c │ ├── lapacke_zge_trans.c │ ├── lapacke_zgg_nancheck.c │ ├── lapacke_zgg_trans.c │ ├── lapacke_zgt_nancheck.c │ ├── lapacke_zhb_nancheck.c │ ├── lapacke_zhb_trans.c │ ├── lapacke_zhe_nancheck.c │ ├── lapacke_zhe_trans.c │ ├── lapacke_zhp_nancheck.c │ ├── lapacke_zhp_trans.c │ ├── lapacke_zhs_nancheck.c │ ├── lapacke_zhs_trans.c │ ├── lapacke_zpb_nancheck.c │ ├── lapacke_zpb_trans.c │ ├── lapacke_zpf_nancheck.c │ ├── lapacke_zpf_trans.c │ ├── lapacke_zpo_nancheck.c │ ├── lapacke_zpo_trans.c │ ├── lapacke_zpp_nancheck.c │ ├── lapacke_zpp_trans.c │ ├── lapacke_zpt_nancheck.c │ ├── lapacke_zsp_nancheck.c │ ├── lapacke_zsp_trans.c │ ├── lapacke_zst_nancheck.c │ ├── lapacke_zsy_nancheck.c │ ├── lapacke_zsy_trans.c │ ├── lapacke_ztb_nancheck.c │ ├── lapacke_ztb_trans.c │ ├── lapacke_ztf_nancheck.c │ ├── lapacke_ztf_trans.c │ ├── lapacke_ztp_nancheck.c │ ├── lapacke_ztp_trans.c │ ├── lapacke_ztr_nancheck.c │ └── lapacke_ztr_trans.c ├── LICENSE ├── Makefile ├── README ├── SRC ├── CMakeLists.txt ├── DEPRECATED │ ├── cgegs.f │ ├── cgegv.f │ ├── cgelsx.f │ ├── cgeqpf.f │ ├── cggsvd.f │ ├── cggsvp.f │ ├── clahrd.f │ ├── clatzm.f │ ├── ctzrqf.f │ ├── dgegs.f │ ├── dgegv.f │ ├── dgelsx.f │ ├── dgeqpf.f │ ├── dggsvd.f │ ├── dggsvp.f │ ├── dlahrd.f │ ├── dlatzm.f │ ├── dtzrqf.f │ ├── sgegs.f │ ├── sgegv.f │ ├── sgelsx.f │ ├── sgeqpf.f │ ├── sggsvd.f │ ├── sggsvp.f │ ├── slahrd.f │ ├── slatzm.f │ ├── stzrqf.f │ ├── zgegs.f │ ├── zgegv.f │ ├── zgelsx.f │ ├── zgeqpf.f │ ├── zggsvd.f │ ├── zggsvp.f │ ├── zlahrd.f │ ├── zlatzm.f │ └── ztzrqf.f ├── Makefile ├── VARIANTS │ ├── Makefile │ ├── README │ ├── cholesky │ │ ├── RL │ │ │ ├── cpotrf.f │ │ │ ├── dpotrf.f │ │ │ ├── spotrf.f │ │ │ └── zpotrf.f │ │ └── TOP │ │ │ ├── cpotrf.f │ │ │ ├── dpotrf.f │ │ │ ├── spotrf.f │ │ │ └── zpotrf.f │ ├── lu │ │ ├── CR │ │ │ ├── cgetrf.f │ │ │ ├── dgetrf.f │ │ │ ├── sgetrf.f │ │ │ └── zgetrf.f │ │ ├── LL │ │ │ ├── cgetrf.f │ │ │ ├── dgetrf.f │ │ │ ├── sgetrf.f │ │ │ └── zgetrf.f │ │ └── REC │ │ │ ├── cgetrf.f │ │ │ ├── dgetrf.f │ │ │ ├── sgetrf.f │ │ │ └── zgetrf.f │ └── qr │ │ └── LL │ │ ├── cgeqrf.f │ │ ├── dgeqrf.f │ │ ├── sceil.f │ │ ├── sgeqrf.f │ │ └── zgeqrf.f ├── cbbcsd.f ├── cbdsqr.f ├── cgbbrd.f ├── cgbcon.f ├── cgbequ.f ├── cgbequb.f ├── cgbrfs.f ├── cgbrfsx.f ├── cgbsv.f ├── cgbsvx.f ├── cgbsvxx.f ├── cgbtf2.f ├── cgbtrf.f ├── cgbtrs.f ├── cgebak.f ├── cgebal.f ├── cgebd2.f ├── cgebrd.f ├── cgecon.f ├── cgeequ.f ├── cgeequb.f ├── cgees.f ├── cgeesx.f ├── cgeev.f ├── cgeevx.f ├── cgehd2.f ├── cgehrd.f ├── cgejsv.f ├── cgelq2.f ├── cgelqf.f ├── cgels.f ├── cgelsd.f ├── cgelss.f ├── cgelsy.f ├── cgemqrt.f ├── cgeql2.f ├── cgeqlf.f ├── cgeqp3.f ├── cgeqr2.f ├── cgeqr2p.f ├── cgeqrf.f ├── cgeqrfp.f ├── cgeqrt.f ├── cgeqrt2.f ├── cgeqrt3.f ├── cgerfs.f ├── cgerfsx.f ├── cgerq2.f ├── cgerqf.f ├── cgesc2.f ├── cgesdd.f ├── cgesv.f ├── cgesvd.f ├── cgesvdx.f ├── cgesvj.f ├── cgesvx.f ├── cgesvxx.f ├── cgetc2.f ├── cgetf2.f ├── cgetrf.f ├── cgetrf2.f ├── cgetri.f ├── cgetrs.f ├── cggbak.f ├── cggbal.f ├── cgges.f ├── cgges3.f ├── cggesx.f ├── cggev.f ├── cggev3.f ├── cggevx.f ├── cggglm.f ├── cgghd3.f ├── cgghrd.f ├── cgglse.f ├── cggqrf.f ├── cggrqf.f ├── cggsvd3.f ├── cggsvp3.f ├── cgsvj0.f ├── cgsvj1.f ├── cgtcon.f ├── cgtrfs.f ├── cgtsv.f ├── cgtsvx.f ├── cgttrf.f ├── cgttrs.f ├── cgtts2.f ├── chbev.f ├── chbevd.f ├── chbevx.f ├── chbgst.f ├── chbgv.f ├── chbgvd.f ├── chbgvx.f ├── chbtrd.f ├── checon.f ├── checon_rook.f ├── cheequb.f ├── cheev.f ├── cheevd.f ├── cheevr.f ├── cheevx.f ├── chegs2.f ├── chegst.f ├── chegv.f ├── chegvd.f ├── chegvx.f ├── cherfs.f ├── cherfsx.f ├── chesv.f ├── chesv_rook.f ├── chesvx.f ├── chesvxx.f ├── cheswapr.f ├── chetd2.f ├── chetf2.f ├── chetf2_rook.f ├── chetrd.f ├── chetrf.f ├── chetrf_rook.f ├── chetri.f ├── chetri2.f ├── chetri2x.f ├── chetri_rook.f ├── chetrs.f ├── chetrs2.f ├── chetrs_rook.f ├── chfrk.f ├── chgeqz.f ├── chla_transtype.f ├── chpcon.f ├── chpev.f ├── chpevd.f ├── chpevx.f ├── chpgst.f ├── chpgv.f ├── chpgvd.f ├── chpgvx.f ├── chprfs.f ├── chpsv.f ├── chpsvx.f ├── chptrd.f ├── chptrf.f ├── chptri.f ├── chptrs.f ├── chsein.f ├── chseqr.f ├── cla_gbamv.f ├── cla_gbrcond_c.f ├── cla_gbrcond_x.f ├── cla_gbrfsx_extended.f ├── cla_gbrpvgrw.f ├── cla_geamv.f ├── cla_gercond_c.f ├── cla_gercond_x.f ├── cla_gerfsx_extended.f ├── cla_gerpvgrw.f ├── cla_heamv.f ├── cla_hercond_c.f ├── cla_hercond_x.f ├── cla_herfsx_extended.f ├── cla_herpvgrw.f ├── cla_lin_berr.f ├── cla_porcond_c.f ├── cla_porcond_x.f ├── cla_porfsx_extended.f ├── cla_porpvgrw.f ├── cla_syamv.f ├── cla_syrcond_c.f ├── cla_syrcond_x.f ├── cla_syrfsx_extended.f ├── cla_syrpvgrw.f ├── cla_wwaddw.f ├── clabrd.f ├── clacgv.f ├── clacn2.f ├── clacon.f ├── clacp2.f ├── clacpy.f ├── clacrm.f ├── clacrt.f ├── cladiv.f ├── claed0.f ├── claed7.f ├── claed8.f ├── claein.f ├── claesy.f ├── claev2.f ├── clag2z.f ├── clags2.f ├── clagtm.f ├── clahef.f ├── clahef_rook.f ├── clahqr.f ├── clahr2.f ├── claic1.f ├── clals0.f ├── clalsa.f ├── clalsd.f ├── clangb.f ├── clange.f ├── clangt.f ├── clanhb.f ├── clanhe.f ├── clanhf.f ├── clanhp.f ├── clanhs.f ├── clanht.f ├── clansb.f ├── clansp.f ├── clansy.f ├── clantb.f ├── clantp.f ├── clantr.f ├── clapll.f ├── clapmr.f ├── clapmt.f ├── claqgb.f ├── claqge.f ├── claqhb.f ├── claqhe.f ├── claqhp.f ├── claqp2.f ├── claqps.f ├── claqr0.f ├── claqr1.f ├── claqr2.f ├── claqr3.f ├── claqr4.f ├── claqr5.f ├── claqsb.f ├── claqsp.f ├── claqsy.f ├── clar1v.f ├── clar2v.f ├── clarcm.f ├── clarf.f ├── clarfb.f ├── clarfg.f ├── clarfgp.f ├── clarft.f ├── clarfx.f ├── clargv.f ├── clarnv.f ├── clarrv.f ├── clarscl2.f ├── clartg.f ├── clartv.f ├── clarz.f ├── clarzb.f ├── clarzt.f ├── clascl.f ├── clascl2.f ├── claset.f ├── clasr.f ├── classq.f ├── claswp.f ├── clasyf.f ├── clasyf_rook.f ├── clatbs.f ├── clatdf.f ├── clatps.f ├── clatrd.f ├── clatrs.f ├── clatrz.f ├── clauu2.f ├── clauum.f ├── cpbcon.f ├── cpbequ.f ├── cpbrfs.f ├── cpbstf.f ├── cpbsv.f ├── cpbsvx.f ├── cpbtf2.f ├── cpbtrf.f ├── cpbtrs.f ├── cpftrf.f ├── cpftri.f ├── cpftrs.f ├── cpocon.f ├── cpoequ.f ├── cpoequb.f ├── cporfs.f ├── cporfsx.f ├── cposv.f ├── cposvx.f ├── cposvxx.f ├── cpotf2.f ├── cpotrf.f ├── cpotrf2.f ├── cpotri.f ├── cpotrs.f ├── cppcon.f ├── cppequ.f ├── cpprfs.f ├── cppsv.f ├── cppsvx.f ├── cpptrf.f ├── cpptri.f ├── cpptrs.f ├── cpstf2.f ├── cpstrf.f ├── cptcon.f ├── cpteqr.f ├── cptrfs.f ├── cptsv.f ├── cptsvx.f ├── cpttrf.f ├── cpttrs.f ├── cptts2.f ├── crot.f ├── cspcon.f ├── cspmv.f ├── cspr.f ├── csprfs.f ├── cspsv.f ├── cspsvx.f ├── csptrf.f ├── csptri.f ├── csptrs.f ├── csrscl.f ├── cstedc.f ├── cstegr.f ├── cstein.f ├── cstemr.f ├── csteqr.f ├── csycon.f ├── csycon_rook.f ├── csyconv.f ├── csyequb.f ├── csymv.f ├── csyr.f ├── csyrfs.f ├── csyrfsx.f ├── csysv.f ├── csysv_rook.f ├── csysvx.f ├── csysvxx.f ├── csyswapr.f ├── csytf2.f ├── csytf2_rook.f ├── csytrf.f ├── csytrf_rook.f ├── csytri.f ├── csytri2.f ├── csytri2x.f ├── csytri_rook.f ├── csytrs.f ├── csytrs2.f ├── csytrs_rook.f ├── ctbcon.f ├── ctbrfs.f ├── ctbtrs.f ├── ctfsm.f ├── ctftri.f ├── ctfttp.f ├── ctfttr.f ├── ctgevc.f ├── ctgex2.f ├── ctgexc.f ├── ctgsen.f ├── ctgsja.f ├── ctgsna.f ├── ctgsy2.f ├── ctgsyl.f ├── ctpcon.f ├── ctpmqrt.f ├── ctpqrt.f ├── ctpqrt2.f ├── ctprfb.f ├── ctprfs.f ├── ctptri.f ├── ctptrs.f ├── ctpttf.f ├── ctpttr.f ├── ctrcon.f ├── ctrevc.f ├── ctrexc.f ├── ctrrfs.f ├── ctrsen.f ├── ctrsna.f ├── ctrsyl.f ├── ctrti2.f ├── ctrtri.f ├── ctrtrs.f ├── ctrttf.f ├── ctrttp.f ├── ctzrzf.f ├── cunbdb.f ├── cunbdb1.f ├── cunbdb2.f ├── cunbdb3.f ├── cunbdb4.f ├── cunbdb5.f ├── cunbdb6.f ├── cuncsd.f ├── cuncsd2by1.f ├── cung2l.f ├── cung2r.f ├── cungbr.f ├── cunghr.f ├── cungl2.f ├── cunglq.f ├── cungql.f ├── cungqr.f ├── cungr2.f ├── cungrq.f ├── cungtr.f ├── cunm22.f ├── cunm2l.f ├── cunm2r.f ├── cunmbr.f ├── cunmhr.f ├── cunml2.f ├── cunmlq.f ├── cunmql.f ├── cunmqr.f ├── cunmr2.f ├── cunmr3.f ├── cunmrq.f ├── cunmrz.f ├── cunmtr.f ├── cupgtr.f ├── cupmtr.f ├── dbbcsd.f ├── dbdsdc.f ├── dbdsqr.f ├── dbdsvdx.f ├── ddisna.f ├── dgbbrd.f ├── dgbcon.f ├── dgbequ.f ├── dgbequb.f ├── dgbrfs.f ├── dgbrfsx.f ├── dgbsv.f ├── dgbsvx.f ├── dgbsvxx.f ├── dgbtf2.f ├── dgbtrf.f ├── dgbtrs.f ├── dgebak.f ├── dgebal.f ├── dgebd2.f ├── dgebrd.f ├── dgecon.f ├── dgeequ.f ├── dgeequb.f ├── dgees.f ├── dgeesx.f ├── dgeev.f ├── dgeevx.f ├── dgehd2.f ├── dgehrd.f ├── dgejsv.f ├── dgelq2.f ├── dgelqf.f ├── dgels.f ├── dgelsd.f ├── dgelss.f ├── dgelsy.f ├── dgemqrt.f ├── dgeql2.f ├── dgeqlf.f ├── dgeqp3.f ├── dgeqr2.f ├── dgeqr2p.f ├── dgeqrf.f ├── dgeqrfp.f ├── dgeqrt.f ├── dgeqrt2.f ├── dgeqrt3.f ├── dgerfs.f ├── dgerfsx.f ├── dgerq2.f ├── dgerqf.f ├── dgesc2.f ├── dgesdd.f ├── dgesv.f ├── dgesvd.f ├── dgesvdx.f ├── dgesvj.f ├── dgesvx.f ├── dgesvxx.f ├── dgetc2.f ├── dgetf2.f ├── dgetrf.f ├── dgetrf2.f ├── dgetri.f ├── dgetrs.f ├── dggbak.f ├── dggbal.f ├── dgges.f ├── dgges3.f ├── dggesx.f ├── dggev.f ├── dggev3.f ├── dggevx.f ├── dggglm.f ├── dgghd3.f ├── dgghrd.f ├── dgglse.f ├── dggqrf.f ├── dggrqf.f ├── dggsvd3.f ├── dggsvp3.f ├── dgsvj0.f ├── dgsvj1.f ├── dgtcon.f ├── dgtrfs.f ├── dgtsv.f ├── dgtsvx.f ├── dgttrf.f ├── dgttrs.f ├── dgtts2.f ├── dhgeqz.f ├── dhsein.f ├── dhseqr.f ├── disnan.f ├── dla_gbamv.f ├── dla_gbrcond.f ├── dla_gbrfsx_extended.f ├── dla_gbrpvgrw.f ├── dla_geamv.f ├── dla_gercond.f ├── dla_gerfsx_extended.f ├── dla_gerpvgrw.f ├── dla_lin_berr.f ├── dla_porcond.f ├── dla_porfsx_extended.f ├── dla_porpvgrw.f ├── dla_syamv.f ├── dla_syrcond.f ├── dla_syrfsx_extended.f ├── dla_syrpvgrw.f ├── dla_wwaddw.f ├── dlabad.f ├── dlabrd.f ├── dlacn2.f ├── dlacon.f ├── dlacpy.f ├── dladiv.f ├── dlae2.f ├── dlaebz.f ├── dlaed0.f ├── dlaed1.f ├── dlaed2.f ├── dlaed3.f ├── dlaed4.f ├── dlaed5.f ├── dlaed6.f ├── dlaed7.f ├── dlaed8.f ├── dlaed9.f ├── dlaeda.f ├── dlaein.f ├── dlaev2.f ├── dlaexc.f ├── dlag2.f ├── dlag2s.f ├── dlags2.f ├── dlagtf.f ├── dlagtm.f ├── dlagts.f ├── dlagv2.f ├── dlahqr.f ├── dlahr2.f ├── dlaic1.f ├── dlaisnan.f ├── dlaln2.f ├── dlals0.f ├── dlalsa.f ├── dlalsd.f ├── dlamrg.f ├── dlaneg.f ├── dlangb.f ├── dlange.f ├── dlangt.f ├── dlanhs.f ├── dlansb.f ├── dlansf.f ├── dlansp.f ├── dlanst.f ├── dlansy.f ├── dlantb.f ├── dlantp.f ├── dlantr.f ├── dlanv2.f ├── dlapll.f ├── dlapmr.f ├── dlapmt.f ├── dlapy2.f ├── dlapy3.f ├── dlaqgb.f ├── dlaqge.f ├── dlaqp2.f ├── dlaqps.f ├── dlaqr0.f ├── dlaqr1.f ├── dlaqr2.f ├── dlaqr3.f ├── dlaqr4.f ├── dlaqr5.f ├── dlaqsb.f ├── dlaqsp.f ├── dlaqsy.f ├── dlaqtr.f ├── dlar1v.f ├── dlar2v.f ├── dlarf.f ├── dlarfb.f ├── dlarfg.f ├── dlarfgp.f ├── dlarft.f ├── dlarfx.f ├── dlargv.f ├── dlarnv.f ├── dlarra.f ├── dlarrb.f ├── dlarrc.f ├── dlarrd.f ├── dlarre.f ├── dlarrf.f ├── dlarrj.f ├── dlarrk.f ├── dlarrr.f ├── dlarrv.f ├── dlarscl2.f ├── dlartg.f ├── dlartgp.f ├── dlartgs.f ├── dlartv.f ├── dlaruv.f ├── dlarz.f ├── dlarzb.f ├── dlarzt.f ├── dlas2.f ├── dlascl.f ├── dlascl2.f ├── dlasd0.f ├── dlasd1.f ├── dlasd2.f ├── dlasd3.f ├── dlasd4.f ├── dlasd5.f ├── dlasd6.f ├── dlasd7.f ├── dlasd8.f ├── dlasda.f ├── dlasdq.f ├── dlasdt.f ├── dlaset.f ├── dlasq1.f ├── dlasq2.f ├── dlasq3.f ├── dlasq4.f ├── dlasq5.f ├── dlasq6.f ├── dlasr.f ├── dlasrt.f ├── dlassq.f ├── dlasv2.f ├── dlaswp.f ├── dlasy2.f ├── dlasyf.f ├── dlasyf_rook.f ├── dlat2s.f ├── dlatbs.f ├── dlatdf.f ├── dlatps.f ├── dlatrd.f ├── dlatrs.f ├── dlatrz.f ├── dlauu2.f ├── dlauum.f ├── dopgtr.f ├── dopmtr.f ├── dorbdb.f ├── dorbdb1.f ├── dorbdb2.f ├── dorbdb3.f ├── dorbdb4.f ├── dorbdb5.f ├── dorbdb6.f ├── dorcsd.f ├── dorcsd2by1.f ├── dorg2l.f ├── dorg2r.f ├── dorgbr.f ├── dorghr.f ├── dorgl2.f ├── dorglq.f ├── dorgql.f ├── dorgqr.f ├── dorgr2.f ├── dorgrq.f ├── dorgtr.f ├── dorm22.f ├── dorm2l.f ├── dorm2r.f ├── dormbr.f ├── dormhr.f ├── dorml2.f ├── dormlq.f ├── dormql.f ├── dormqr.f ├── dormr2.f ├── dormr3.f ├── dormrq.f ├── dormrz.f ├── dormtr.f ├── dpbcon.f ├── dpbequ.f ├── dpbrfs.f ├── dpbstf.f ├── dpbsv.f ├── dpbsvx.f ├── dpbtf2.f ├── dpbtrf.f ├── dpbtrs.f ├── dpftrf.f ├── dpftri.f ├── dpftrs.f ├── dpocon.f ├── dpoequ.f ├── dpoequb.f ├── dporfs.f ├── dporfsx.f ├── dposv.f ├── dposvx.f ├── dposvxx.f ├── dpotf2.f ├── dpotrf.f ├── dpotrf2.f ├── dpotri.f ├── dpotrs.f ├── dppcon.f ├── dppequ.f ├── dpprfs.f ├── dppsv.f ├── dppsvx.f ├── dpptrf.f ├── dpptri.f ├── dpptrs.f ├── dpstf2.f ├── dpstrf.f ├── dptcon.f ├── dpteqr.f ├── dptrfs.f ├── dptsv.f ├── dptsvx.f ├── dpttrf.f ├── dpttrs.f ├── dptts2.f ├── drscl.f ├── dsbev.f ├── dsbevd.f ├── dsbevx.f ├── dsbgst.f ├── dsbgv.f ├── dsbgvd.f ├── dsbgvx.f ├── dsbtrd.f ├── dsfrk.f ├── dsgesv.f ├── dspcon.f ├── dspev.f ├── dspevd.f ├── dspevx.f ├── dspgst.f ├── dspgv.f ├── dspgvd.f ├── dspgvx.f ├── dsposv.f ├── dsprfs.f ├── dspsv.f ├── dspsvx.f ├── dsptrd.f ├── dsptrf.f ├── dsptri.f ├── dsptrs.f ├── dstebz.f ├── dstedc.f ├── dstegr.f ├── dstein.f ├── dstemr.f ├── dsteqr.f ├── dsterf.f ├── dstev.f ├── dstevd.f ├── dstevr.f ├── dstevx.f ├── dsycon.f ├── dsycon_rook.f ├── dsyconv.f ├── dsyequb.f ├── dsyev.f ├── dsyevd.f ├── dsyevr.f ├── dsyevx.f ├── dsygs2.f ├── dsygst.f ├── dsygv.f ├── dsygvd.f ├── dsygvx.f ├── dsyrfs.f ├── dsyrfsx.f ├── dsysv.f ├── dsysv_rook.f ├── dsysvx.f ├── dsysvxx.f ├── dsyswapr.f ├── dsytd2.f ├── dsytf2.f ├── dsytf2_rook.f ├── dsytrd.f ├── dsytrf.f ├── dsytrf_rook.f ├── dsytri.f ├── dsytri2.f ├── dsytri2x.f ├── dsytri_rook.f ├── dsytrs.f ├── dsytrs2.f ├── dsytrs_rook.f ├── dtbcon.f ├── dtbrfs.f ├── dtbtrs.f ├── dtfsm.f ├── dtftri.f ├── dtfttp.f ├── dtfttr.f ├── dtgevc.f ├── dtgex2.f ├── dtgexc.f ├── dtgsen.f ├── dtgsja.f ├── dtgsna.f ├── dtgsy2.f ├── dtgsyl.f ├── dtpcon.f ├── dtpmqrt.f ├── dtpqrt.f ├── dtpqrt2.f ├── dtprfb.f ├── dtprfs.f ├── dtptri.f ├── dtptrs.f ├── dtpttf.f ├── dtpttr.f ├── dtrcon.f ├── dtrevc.f ├── dtrexc.f ├── dtrrfs.f ├── dtrsen.f ├── dtrsna.f ├── dtrsyl.f ├── dtrti2.f ├── dtrtri.f ├── dtrtrs.f ├── dtrttf.f ├── dtrttp.f ├── dtzrzf.f ├── dzsum1.f ├── icmax1.f ├── ieeeck.f ├── ilaclc.f ├── ilaclr.f ├── iladiag.f ├── iladlc.f ├── iladlr.f ├── ilaenv.f ├── ilaprec.f ├── ilaslc.f ├── ilaslr.f ├── ilatrans.f ├── ilauplo.f ├── ilaver.f ├── ilazlc.f ├── ilazlr.f ├── iparmq.f ├── izmax1.f ├── lsamen.f ├── sbbcsd.f ├── sbdsdc.f ├── sbdsqr.f ├── sbdsvdx.f ├── scsum1.f ├── sdisna.f ├── sgbbrd.f ├── sgbcon.f ├── sgbequ.f ├── sgbequb.f ├── sgbrfs.f ├── sgbrfsx.f ├── sgbsv.f ├── sgbsvx.f ├── sgbsvxx.f ├── sgbtf2.f ├── sgbtrf.f ├── sgbtrs.f ├── sgebak.f ├── sgebal.f ├── sgebd2.f ├── sgebrd.f ├── sgecon.f ├── sgeequ.f ├── sgeequb.f ├── sgees.f ├── sgeesx.f ├── sgeev.f ├── sgeevx.f ├── sgehd2.f ├── sgehrd.f ├── sgejsv.f ├── sgelq2.f ├── sgelqf.f ├── sgels.f ├── sgelsd.f ├── sgelss.f ├── sgelsy.f ├── sgemqrt.f ├── sgeql2.f ├── sgeqlf.f ├── sgeqp3.f ├── sgeqr2.f ├── sgeqr2p.f ├── sgeqrf.f ├── sgeqrfp.f ├── sgeqrt.f ├── sgeqrt2.f ├── sgeqrt3.f ├── sgerfs.f ├── sgerfsx.f ├── sgerq2.f ├── sgerqf.f ├── sgesc2.f ├── sgesdd.f ├── sgesv.f ├── sgesvd.f ├── sgesvdx.f ├── sgesvj.f ├── sgesvx.f ├── sgesvxx.f ├── sgetc2.f ├── sgetf2.f ├── sgetrf.f ├── sgetrf2.f ├── sgetri.f ├── sgetrs.f ├── sggbak.f ├── sggbal.f ├── sgges.f ├── sgges3.f ├── sggesx.f ├── sggev.f ├── sggev3.f ├── sggevx.f ├── sggglm.f ├── sgghd3.f ├── sgghrd.f ├── sgglse.f ├── sggqrf.f ├── sggrqf.f ├── sggsvd3.f ├── sggsvp3.f ├── sgsvj0.f ├── sgsvj1.f ├── sgtcon.f ├── sgtrfs.f ├── sgtsv.f ├── sgtsvx.f ├── sgttrf.f ├── sgttrs.f ├── sgtts2.f ├── shgeqz.f ├── shsein.f ├── shseqr.f ├── sisnan.f ├── sla_gbamv.f ├── sla_gbrcond.f ├── sla_gbrfsx_extended.f ├── sla_gbrpvgrw.f ├── sla_geamv.f ├── sla_gercond.f ├── sla_gerfsx_extended.f ├── sla_gerpvgrw.f ├── sla_lin_berr.f ├── sla_porcond.f ├── sla_porfsx_extended.f ├── sla_porpvgrw.f ├── sla_syamv.f ├── sla_syrcond.f ├── sla_syrfsx_extended.f ├── sla_syrpvgrw.f ├── sla_wwaddw.f ├── slabad.f ├── slabrd.f ├── slacn2.f ├── slacon.f ├── slacpy.f ├── sladiv.f ├── slae2.f ├── slaebz.f ├── slaed0.f ├── slaed1.f ├── slaed2.f ├── slaed3.f ├── slaed4.f ├── slaed5.f ├── slaed6.f ├── slaed7.f ├── slaed8.f ├── slaed9.f ├── slaeda.f ├── slaein.f ├── slaev2.f ├── slaexc.f ├── slag2.f ├── slag2d.f ├── slags2.f ├── slagtf.f ├── slagtm.f ├── slagts.f ├── slagv2.f ├── slahqr.f ├── slahr2.f ├── slaic1.f ├── slaisnan.f ├── slaln2.f ├── slals0.f ├── slalsa.f ├── slalsd.f ├── slamrg.f ├── slaneg.f ├── slangb.f ├── slange.f ├── slangt.f ├── slanhs.f ├── slansb.f ├── slansf.f ├── slansp.f ├── slanst.f ├── slansy.f ├── slantb.f ├── slantp.f ├── slantr.f ├── slanv2.f ├── slapll.f ├── slapmr.f ├── slapmt.f ├── slapy2.f ├── slapy3.f ├── slaqgb.f ├── slaqge.f ├── slaqp2.f ├── slaqps.f ├── slaqr0.f ├── slaqr1.f ├── slaqr2.f ├── slaqr3.f ├── slaqr4.f ├── slaqr5.f ├── slaqsb.f ├── slaqsp.f ├── slaqsy.f ├── slaqtr.f ├── slar1v.f ├── slar2v.f ├── slarf.f ├── slarfb.f ├── slarfg.f ├── slarfgp.f ├── slarft.f ├── slarfx.f ├── slargv.f ├── slarnv.f ├── slarra.f ├── slarrb.f ├── slarrc.f ├── slarrd.f ├── slarre.f ├── slarrf.f ├── slarrj.f ├── slarrk.f ├── slarrr.f ├── slarrv.f ├── slarscl2.f ├── slartg.f ├── slartgp.f ├── slartgs.f ├── slartv.f ├── slaruv.f ├── slarz.f ├── slarzb.f ├── slarzt.f ├── slas2.f ├── slascl.f ├── slascl2.f ├── slasd0.f ├── slasd1.f ├── slasd2.f ├── slasd3.f ├── slasd4.f ├── slasd5.f ├── slasd6.f ├── slasd7.f ├── slasd8.f ├── slasda.f ├── slasdq.f ├── slasdt.f ├── slaset.f ├── slasq1.f ├── slasq2.f ├── slasq3.f ├── slasq4.f ├── slasq5.f ├── slasq6.f ├── slasr.f ├── slasrt.f ├── slassq.f ├── slasv2.f ├── slaswp.f ├── slasy2.f ├── slasyf.f ├── slasyf_rook.f ├── slatbs.f ├── slatdf.f ├── slatps.f ├── slatrd.f ├── slatrs.f ├── slatrz.f ├── slauu2.f ├── slauum.f ├── sopgtr.f ├── sopmtr.f ├── sorbdb.f ├── sorbdb1.f ├── sorbdb2.f ├── sorbdb3.f ├── sorbdb4.f ├── sorbdb5.f ├── sorbdb6.f ├── sorcsd.f ├── sorcsd2by1.f ├── sorg2l.f ├── sorg2r.f ├── sorgbr.f ├── sorghr.f ├── sorgl2.f ├── sorglq.f ├── sorgql.f ├── sorgqr.f ├── sorgr2.f ├── sorgrq.f ├── sorgtr.f ├── sorm22.f ├── sorm2l.f ├── sorm2r.f ├── sormbr.f ├── sormhr.f ├── sorml2.f ├── sormlq.f ├── sormql.f ├── sormqr.f ├── sormr2.f ├── sormr3.f ├── sormrq.f ├── sormrz.f ├── sormtr.f ├── spbcon.f ├── spbequ.f ├── spbrfs.f ├── spbstf.f ├── spbsv.f ├── spbsvx.f ├── spbtf2.f ├── spbtrf.f ├── spbtrs.f ├── spftrf.f ├── spftri.f ├── spftrs.f ├── spocon.f ├── spoequ.f ├── spoequb.f ├── sporfs.f ├── sporfsx.f ├── sposv.f ├── sposvx.f ├── sposvxx.f ├── spotf2.f ├── spotrf.f ├── spotrf2.f ├── spotri.f ├── spotrs.f ├── sppcon.f ├── sppequ.f ├── spprfs.f ├── sppsv.f ├── sppsvx.f ├── spptrf.f ├── spptri.f ├── spptrs.f ├── spstf2.f ├── spstrf.f ├── sptcon.f ├── spteqr.f ├── sptrfs.f ├── sptsv.f ├── sptsvx.f ├── spttrf.f ├── spttrs.f ├── sptts2.f ├── srscl.f ├── ssbev.f ├── ssbevd.f ├── ssbevx.f ├── ssbgst.f ├── ssbgv.f ├── ssbgvd.f ├── ssbgvx.f ├── ssbtrd.f ├── ssfrk.f ├── sspcon.f ├── sspev.f ├── sspevd.f ├── sspevx.f ├── sspgst.f ├── sspgv.f ├── sspgvd.f ├── sspgvx.f ├── ssprfs.f ├── sspsv.f ├── sspsvx.f ├── ssptrd.f ├── ssptrf.f ├── ssptri.f ├── ssptrs.f ├── sstebz.f ├── sstedc.f ├── sstegr.f ├── sstein.f ├── sstemr.f ├── ssteqr.f ├── ssterf.f ├── sstev.f ├── sstevd.f ├── sstevr.f ├── sstevx.f ├── ssycon.f ├── ssycon_rook.f ├── ssyconv.f ├── ssyequb.f ├── ssyev.f ├── ssyevd.f ├── ssyevr.f ├── ssyevx.f ├── ssygs2.f ├── ssygst.f ├── ssygv.f ├── ssygvd.f ├── ssygvx.f ├── ssyrfs.f ├── ssyrfsx.f ├── ssysv.f ├── ssysv_rook.f ├── ssysvx.f ├── ssysvxx.f ├── ssyswapr.f ├── ssytd2.f ├── ssytf2.f ├── ssytf2_rook.f ├── ssytrd.f ├── ssytrf.f ├── ssytrf_rook.f ├── ssytri.f ├── ssytri2.f ├── ssytri2x.f ├── ssytri_rook.f ├── ssytrs.f ├── ssytrs2.f ├── ssytrs_rook.f ├── stbcon.f ├── stbrfs.f ├── stbtrs.f ├── stfsm.f ├── stftri.f ├── stfttp.f ├── stfttr.f ├── stgevc.f ├── stgex2.f ├── stgexc.f ├── stgsen.f ├── stgsja.f ├── stgsna.f ├── stgsy2.f ├── stgsyl.f ├── stpcon.f ├── stpmqrt.f ├── stpqrt.f ├── stpqrt2.f ├── stprfb.f ├── stprfs.f ├── stptri.f ├── stptrs.f ├── stpttf.f ├── stpttr.f ├── strcon.f ├── strevc.f ├── strexc.f ├── strrfs.f ├── strsen.f ├── strsna.f ├── strsyl.f ├── strti2.f ├── strtri.f ├── strtrs.f ├── strttf.f ├── strttp.f ├── stzrzf.f ├── xerbla.f ├── xerbla_array.f ├── zbbcsd.f ├── zbdsqr.f ├── zcgesv.f ├── zcposv.f ├── zdrscl.f ├── zgbbrd.f ├── zgbcon.f ├── zgbequ.f ├── zgbequb.f ├── zgbrfs.f ├── zgbrfsx.f ├── zgbsv.f ├── zgbsvx.f ├── zgbsvxx.f ├── zgbtf2.f ├── zgbtrf.f ├── zgbtrs.f ├── zgebak.f ├── zgebal.f ├── zgebd2.f ├── zgebrd.f ├── zgecon.f ├── zgeequ.f ├── zgeequb.f ├── zgees.f ├── zgeesx.f ├── zgeev.f ├── zgeevx.f ├── zgehd2.f ├── zgehrd.f ├── zgejsv.f ├── zgelq2.f ├── zgelqf.f ├── zgels.f ├── zgelsd.f ├── zgelss.f ├── zgelsy.f ├── zgemqrt.f ├── zgeql2.f ├── zgeqlf.f ├── zgeqp3.f ├── zgeqr2.f ├── zgeqr2p.f ├── zgeqrf.f ├── zgeqrfp.f ├── zgeqrt.f ├── zgeqrt2.f ├── zgeqrt3.f ├── zgerfs.f ├── zgerfsx.f ├── zgerq2.f ├── zgerqf.f ├── zgesc2.f ├── zgesdd.f ├── zgesv.f ├── zgesvd.f ├── zgesvdx.f ├── zgesvj.f ├── zgesvx.f ├── zgesvxx.f ├── zgetc2.f ├── zgetf2.f ├── zgetrf.f ├── zgetrf2.f ├── zgetri.f ├── zgetrs.f ├── zggbak.f ├── zggbal.f ├── zgges.f ├── zgges3.f ├── zggesx.f ├── zggev.f ├── zggev3.f ├── zggevx.f ├── zggglm.f ├── zgghd3.f ├── zgghrd.f ├── zgglse.f ├── zggqrf.f ├── zggrqf.f ├── zggsvd3.f ├── zggsvp3.f ├── zgsvj0.f ├── zgsvj1.f ├── zgtcon.f ├── zgtrfs.f ├── zgtsv.f ├── zgtsvx.f ├── zgttrf.f ├── zgttrs.f ├── zgtts2.f ├── zhbev.f ├── zhbevd.f ├── zhbevx.f ├── zhbgst.f ├── zhbgv.f ├── zhbgvd.f ├── zhbgvx.f ├── zhbtrd.f ├── zhecon.f ├── zhecon_rook.f ├── zheequb.f ├── zheev.f ├── zheevd.f ├── zheevr.f ├── zheevx.f ├── zhegs2.f ├── zhegst.f ├── zhegv.f ├── zhegvd.f ├── zhegvx.f ├── zherfs.f ├── zherfsx.f ├── zhesv.f ├── zhesv_rook.f ├── zhesvx.f ├── zhesvxx.f ├── zheswapr.f ├── zhetd2.f ├── zhetf2.f ├── zhetf2_rook.f ├── zhetrd.f ├── zhetrf.f ├── zhetrf_rook.f ├── zhetri.f ├── zhetri2.f ├── zhetri2x.f ├── zhetri_rook.f ├── zhetrs.f ├── zhetrs2.f ├── zhetrs_rook.f ├── zhfrk.f ├── zhgeqz.f ├── zhpcon.f ├── zhpev.f ├── zhpevd.f ├── zhpevx.f ├── zhpgst.f ├── zhpgv.f ├── zhpgvd.f ├── zhpgvx.f ├── zhprfs.f ├── zhpsv.f ├── zhpsvx.f ├── zhptrd.f ├── zhptrf.f ├── zhptri.f ├── zhptrs.f ├── zhsein.f ├── zhseqr.f ├── zla_gbamv.f ├── zla_gbrcond_c.f ├── zla_gbrcond_x.f ├── zla_gbrfsx_extended.f ├── zla_gbrpvgrw.f ├── zla_geamv.f ├── zla_gercond_c.f ├── zla_gercond_x.f ├── zla_gerfsx_extended.f ├── zla_gerpvgrw.f ├── zla_heamv.f ├── zla_hercond_c.f ├── zla_hercond_x.f ├── zla_herfsx_extended.f ├── zla_herpvgrw.f ├── zla_lin_berr.f ├── zla_porcond_c.f ├── zla_porcond_x.f ├── zla_porfsx_extended.f ├── zla_porpvgrw.f ├── zla_syamv.f ├── zla_syrcond_c.f ├── zla_syrcond_x.f ├── zla_syrfsx_extended.f ├── zla_syrpvgrw.f ├── zla_wwaddw.f ├── zlabrd.f ├── zlacgv.f ├── zlacn2.f ├── zlacon.f ├── zlacp2.f ├── zlacpy.f ├── zlacrm.f ├── zlacrt.f ├── zladiv.f ├── zlaed0.f ├── zlaed7.f ├── zlaed8.f ├── zlaein.f ├── zlaesy.f ├── zlaev2.f ├── zlag2c.f ├── zlags2.f ├── zlagtm.f ├── zlahef.f ├── zlahef_rook.f ├── zlahqr.f ├── zlahr2.f ├── zlaic1.f ├── zlals0.f ├── zlalsa.f ├── zlalsd.f ├── zlangb.f ├── zlange.f ├── zlangt.f ├── zlanhb.f ├── zlanhe.f ├── zlanhf.f ├── zlanhp.f ├── zlanhs.f ├── zlanht.f ├── zlansb.f ├── zlansp.f ├── zlansy.f ├── zlantb.f ├── zlantp.f ├── zlantr.f ├── zlapll.f ├── zlapmr.f ├── zlapmt.f ├── zlaqgb.f ├── zlaqge.f ├── zlaqhb.f ├── zlaqhe.f ├── zlaqhp.f ├── zlaqp2.f ├── zlaqps.f ├── zlaqr0.f ├── zlaqr1.f ├── zlaqr2.f ├── zlaqr3.f ├── zlaqr4.f ├── zlaqr5.f ├── zlaqsb.f ├── zlaqsp.f ├── zlaqsy.f ├── zlar1v.f ├── zlar2v.f ├── zlarcm.f ├── zlarf.f ├── zlarfb.f ├── zlarfg.f ├── zlarfgp.f ├── zlarft.f ├── zlarfx.f ├── zlargv.f ├── zlarnv.f ├── zlarrv.f ├── zlarscl2.f ├── zlartg.f ├── zlartv.f ├── zlarz.f ├── zlarzb.f ├── zlarzt.f ├── zlascl.f ├── zlascl2.f ├── zlaset.f ├── zlasr.f ├── zlassq.f ├── zlaswp.f ├── zlasyf.f ├── zlasyf_rook.f ├── zlat2c.f ├── zlatbs.f ├── zlatdf.f ├── zlatps.f ├── zlatrd.f ├── zlatrs.f ├── zlatrz.f ├── zlauu2.f ├── zlauum.f ├── zpbcon.f ├── zpbequ.f ├── zpbrfs.f ├── zpbstf.f ├── zpbsv.f ├── zpbsvx.f ├── zpbtf2.f ├── zpbtrf.f ├── zpbtrs.f ├── zpftrf.f ├── zpftri.f ├── zpftrs.f ├── zpocon.f ├── zpoequ.f ├── zpoequb.f ├── zporfs.f ├── zporfsx.f ├── zposv.f ├── zposvx.f ├── zposvxx.f ├── zpotf2.f ├── zpotrf.f ├── zpotrf2.f ├── zpotri.f ├── zpotrs.f ├── zppcon.f ├── zppequ.f ├── zpprfs.f ├── zppsv.f ├── zppsvx.f ├── zpptrf.f ├── zpptri.f ├── zpptrs.f ├── zpstf2.f ├── zpstrf.f ├── zptcon.f ├── zpteqr.f ├── zptrfs.f ├── zptsv.f ├── zptsvx.f ├── zpttrf.f ├── zpttrs.f ├── zptts2.f ├── zrot.f ├── zspcon.f ├── zspmv.f ├── zspr.f ├── zsprfs.f ├── zspsv.f ├── zspsvx.f ├── zsptrf.f ├── zsptri.f ├── zsptrs.f ├── zstedc.f ├── zstegr.f ├── zstein.f ├── zstemr.f ├── zsteqr.f ├── zsycon.f ├── zsycon_rook.f ├── zsyconv.f ├── zsyequb.f ├── zsymv.f ├── zsyr.f ├── zsyrfs.f ├── zsyrfsx.f ├── zsysv.f ├── zsysv_rook.f ├── zsysvx.f ├── zsysvxx.f ├── zsyswapr.f ├── zsytf2.f ├── zsytf2_rook.f ├── zsytrf.f ├── zsytrf_rook.f ├── zsytri.f ├── zsytri2.f ├── zsytri2x.f ├── zsytri_rook.f ├── zsytrs.f ├── zsytrs2.f ├── zsytrs_rook.f ├── ztbcon.f ├── ztbrfs.f ├── ztbtrs.f ├── ztfsm.f ├── ztftri.f ├── ztfttp.f ├── ztfttr.f ├── ztgevc.f ├── ztgex2.f ├── ztgexc.f ├── ztgsen.f ├── ztgsja.f ├── ztgsna.f ├── ztgsy2.f ├── ztgsyl.f ├── ztpcon.f ├── ztpmqrt.f ├── ztpqrt.f ├── ztpqrt2.f ├── ztprfb.f ├── ztprfs.f ├── ztptri.f ├── ztptrs.f ├── ztpttf.f ├── ztpttr.f ├── ztrcon.f ├── ztrevc.f ├── ztrexc.f ├── ztrrfs.f ├── ztrsen.f ├── ztrsna.f ├── ztrsyl.f ├── ztrti2.f ├── ztrtri.f ├── ztrtrs.f ├── ztrttf.f ├── ztrttp.f ├── ztzrzf.f ├── zunbdb.f ├── zunbdb1.f ├── zunbdb2.f ├── zunbdb3.f ├── zunbdb4.f ├── zunbdb5.f ├── zunbdb6.f ├── zuncsd.f ├── zuncsd2by1.f ├── zung2l.f ├── zung2r.f ├── zungbr.f ├── zunghr.f ├── zungl2.f ├── zunglq.f ├── zungql.f ├── zungqr.f ├── zungr2.f ├── zungrq.f ├── zungtr.f ├── zunm22.f ├── zunm2l.f ├── zunm2r.f ├── zunmbr.f ├── zunmhr.f ├── zunml2.f ├── zunmlq.f ├── zunmql.f ├── zunmqr.f ├── zunmr2.f ├── zunmr3.f ├── zunmrq.f ├── zunmrz.f ├── zunmtr.f ├── zupgtr.f └── zupmtr.f ├── TESTING ├── CMakeLists.txt ├── EIG │ ├── CMakeLists.txt │ ├── Makefile │ ├── alahdg.f │ ├── alareq.f │ ├── alarqg.f │ ├── alasmg.f │ ├── alasum.f │ ├── alasvm.f │ ├── cbdt01.f │ ├── cbdt02.f │ ├── cbdt03.f │ ├── cbdt05.f │ ├── cchkbb.f │ ├── cchkbd.f │ ├── cchkbk.f │ ├── cchkbl.f │ ├── cchkec.f │ ├── cchkee.f │ ├── cchkgg.f │ ├── cchkgk.f │ ├── cchkgl.f │ ├── cchkhb.f │ ├── cchkhs.f │ ├── cchkst.f │ ├── cckcsd.f │ ├── cckglm.f │ ├── cckgqr.f │ ├── cckgsv.f │ ├── ccklse.f │ ├── ccsdts.f │ ├── cdrges.f │ ├── cdrges3.f │ ├── cdrgev.f │ ├── cdrgev3.f │ ├── cdrgsx.f │ ├── cdrgvx.f │ ├── cdrvbd.f │ ├── cdrves.f │ ├── cdrvev.f │ ├── cdrvsg.f │ ├── cdrvst.f │ ├── cdrvsx.f │ ├── cdrvvx.f │ ├── cerrbd.f │ ├── cerrec.f │ ├── cerred.f │ ├── cerrgg.f │ ├── cerrhs.f │ ├── cerrst.f │ ├── cget02.f │ ├── cget10.f │ ├── cget22.f │ ├── cget23.f │ ├── cget24.f │ ├── cget35.f │ ├── cget36.f │ ├── cget37.f │ ├── cget38.f │ ├── cget51.f │ ├── cget52.f │ ├── cget54.f │ ├── cglmts.f │ ├── cgqrts.f │ ├── cgrqts.f │ ├── cgsvts3.f │ ├── chbt21.f │ ├── chet21.f │ ├── chet22.f │ ├── chkxer.f │ ├── chpt21.f │ ├── chst01.f │ ├── clarfy.f │ ├── clarhs.f │ ├── clatm4.f │ ├── clctes.f │ ├── clctsx.f │ ├── clsets.f │ ├── csbmv.f │ ├── csgt01.f │ ├── cslect.f │ ├── cstt21.f │ ├── cstt22.f │ ├── cunt01.f │ ├── cunt03.f │ ├── dbdt01.f │ ├── dbdt02.f │ ├── dbdt03.f │ ├── dbdt04.f │ ├── dbdt05.f │ ├── dchkbb.f │ ├── dchkbd.f │ ├── dchkbk.f │ ├── dchkbl.f │ ├── dchkec.f │ ├── dchkee.f │ ├── dchkgg.f │ ├── dchkgk.f │ ├── dchkgl.f │ ├── dchkhs.f │ ├── dchksb.f │ ├── dchkst.f │ ├── dckcsd.f │ ├── dckglm.f │ ├── dckgqr.f │ ├── dckgsv.f │ ├── dcklse.f │ ├── dcsdts.f │ ├── ddrges.f │ ├── ddrges3.f │ ├── ddrgev.f │ ├── ddrgev3.f │ ├── ddrgsx.f │ ├── ddrgvx.f │ ├── ddrvbd.f │ ├── ddrves.f │ ├── ddrvev.f │ ├── ddrvsg.f │ ├── ddrvst.f │ ├── ddrvsx.f │ ├── ddrvvx.f │ ├── derrbd.f │ ├── derrec.f │ ├── derred.f │ ├── derrgg.f │ ├── derrhs.f │ ├── derrst.f │ ├── dget02.f │ ├── dget10.f │ ├── dget22.f │ ├── dget23.f │ ├── dget24.f │ ├── dget31.f │ ├── dget32.f │ ├── dget33.f │ ├── dget34.f │ ├── dget35.f │ ├── dget36.f │ ├── dget37.f │ ├── dget38.f │ ├── dget39.f │ ├── dget51.f │ ├── dget52.f │ ├── dget53.f │ ├── dget54.f │ ├── dglmts.f │ ├── dgqrts.f │ ├── dgrqts.f │ ├── dgsvts3.f │ ├── dhst01.f │ ├── dlafts.f │ ├── dlahd2.f │ ├── dlarfy.f │ ├── dlarhs.f │ ├── dlasum.f │ ├── dlatb9.f │ ├── dlatm4.f │ ├── dlctes.f │ ├── dlctsx.f │ ├── dlsets.f │ ├── dort01.f │ ├── dort03.f │ ├── dsbt21.f │ ├── dsgt01.f │ ├── dslect.f │ ├── dspt21.f │ ├── dstech.f │ ├── dstect.f │ ├── dstt21.f │ ├── dstt22.f │ ├── dsvdch.f │ ├── dsvdct.f │ ├── dsxt1.f │ ├── dsyt21.f │ ├── dsyt22.f │ ├── ilaenv.f │ ├── sbdt01.f │ ├── sbdt02.f │ ├── sbdt03.f │ ├── sbdt04.f │ ├── sbdt05.f │ ├── schkbb.f │ ├── schkbd.f │ ├── schkbk.f │ ├── schkbl.f │ ├── schkec.f │ ├── schkee.f │ ├── schkgg.f │ ├── schkgk.f │ ├── schkgl.f │ ├── schkhs.f │ ├── schksb.f │ ├── schkst.f │ ├── sckcsd.f │ ├── sckglm.f │ ├── sckgqr.f │ ├── sckgsv.f │ ├── scklse.f │ ├── scsdts.f │ ├── sdrges.f │ ├── sdrges3.f │ ├── sdrgev.f │ ├── sdrgev3.f │ ├── sdrgsx.f │ ├── sdrgvx.f │ ├── sdrvbd.f │ ├── sdrves.f │ ├── sdrvev.f │ ├── sdrvsg.f │ ├── sdrvst.f │ ├── sdrvsx.f │ ├── sdrvvx.f │ ├── serrbd.f │ ├── serrec.f │ ├── serred.f │ ├── serrgg.f │ ├── serrhs.f │ ├── serrst.f │ ├── sget02.f │ ├── sget10.f │ ├── sget22.f │ ├── sget23.f │ ├── sget24.f │ ├── sget31.f │ ├── sget32.f │ ├── sget33.f │ ├── sget34.f │ ├── sget35.f │ ├── sget36.f │ ├── sget37.f │ ├── sget38.f │ ├── sget39.f │ ├── sget51.f │ ├── sget52.f │ ├── sget53.f │ ├── sget54.f │ ├── sglmts.f │ ├── sgqrts.f │ ├── sgrqts.f │ ├── sgsvts3.f │ ├── shst01.f │ ├── slafts.f │ ├── slahd2.f │ ├── slarfy.f │ ├── slarhs.f │ ├── slasum.f │ ├── slatb9.f │ ├── slatm4.f │ ├── slctes.f │ ├── slctsx.f │ ├── slsets.f │ ├── sort01.f │ ├── sort03.f │ ├── ssbt21.f │ ├── ssgt01.f │ ├── sslect.f │ ├── sspt21.f │ ├── sstech.f │ ├── sstect.f │ ├── sstt21.f │ ├── sstt22.f │ ├── ssvdch.f │ ├── ssvdct.f │ ├── ssxt1.f │ ├── ssyt21.f │ ├── ssyt22.f │ ├── xerbla.f │ ├── xlaenv.f │ ├── zbdt01.f │ ├── zbdt02.f │ ├── zbdt03.f │ ├── zbdt05.f │ ├── zchkbb.f │ ├── zchkbd.f │ ├── zchkbk.f │ ├── zchkbl.f │ ├── zchkec.f │ ├── zchkee.f │ ├── zchkgg.f │ ├── zchkgk.f │ ├── zchkgl.f │ ├── zchkhb.f │ ├── zchkhs.f │ ├── zchkst.f │ ├── zckcsd.f │ ├── zckglm.f │ ├── zckgqr.f │ ├── zckgsv.f │ ├── zcklse.f │ ├── zcsdts.f │ ├── zdrges.f │ ├── zdrges3.f │ ├── zdrgev.f │ ├── zdrgev3.f │ ├── zdrgsx.f │ ├── zdrgvx.f │ ├── zdrvbd.f │ ├── zdrves.f │ ├── zdrvev.f │ ├── zdrvsg.f │ ├── zdrvst.f │ ├── zdrvsx.f │ ├── zdrvvx.f │ ├── zerrbd.f │ ├── zerrec.f │ ├── zerred.f │ ├── zerrgg.f │ ├── zerrhs.f │ ├── zerrst.f │ ├── zget02.f │ ├── zget10.f │ ├── zget22.f │ ├── zget23.f │ ├── zget24.f │ ├── zget35.f │ ├── zget36.f │ ├── zget37.f │ ├── zget38.f │ ├── zget51.f │ ├── zget52.f │ ├── zget54.f │ ├── zglmts.f │ ├── zgqrts.f │ ├── zgrqts.f │ ├── zgsvts3.f │ ├── zhbt21.f │ ├── zhet21.f │ ├── zhet22.f │ ├── zhpt21.f │ ├── zhst01.f │ ├── zlarfy.f │ ├── zlarhs.f │ ├── zlatm4.f │ ├── zlctes.f │ ├── zlctsx.f │ ├── zlsets.f │ ├── zsbmv.f │ ├── zsgt01.f │ ├── zslect.f │ ├── zstt21.f │ ├── zstt22.f │ ├── zunt01.f │ └── zunt03.f ├── LIN │ ├── CMakeLists.txt │ ├── Makefile │ ├── aladhd.f │ ├── alaerh.f │ ├── alaesm.f │ ├── alahd.f │ ├── alareq.f │ ├── alasum.f │ ├── alasvm.f │ ├── cchkaa.f │ ├── cchkeq.f │ ├── cchkgb.f │ ├── cchkge.f │ ├── cchkgt.f │ ├── cchkhe.f │ ├── cchkhe_rook.f │ ├── cchkhp.f │ ├── cchklq.f │ ├── cchkpb.f │ ├── cchkpo.f │ ├── cchkpp.f │ ├── cchkps.f │ ├── cchkpt.f │ ├── cchkq3.f │ ├── cchkql.f │ ├── cchkqr.f │ ├── cchkqrt.f │ ├── cchkqrtp.f │ ├── cchkrfp.f │ ├── cchkrq.f │ ├── cchksp.f │ ├── cchksy.f │ ├── cchksy_rook.f │ ├── cchktb.f │ ├── cchktp.f │ ├── cchktr.f │ ├── cchktz.f │ ├── cdrvgb.f │ ├── cdrvgbx.f │ ├── cdrvge.f │ ├── cdrvgex.f │ ├── cdrvgt.f │ ├── cdrvhe.f │ ├── cdrvhe_rook.f │ ├── cdrvhex.f │ ├── cdrvhp.f │ ├── cdrvls.f │ ├── cdrvpb.f │ ├── cdrvpo.f │ ├── cdrvpox.f │ ├── cdrvpp.f │ ├── cdrvpt.f │ ├── cdrvrf1.f │ ├── cdrvrf2.f │ ├── cdrvrf3.f │ ├── cdrvrf4.f │ ├── cdrvrfp.f │ ├── cdrvsp.f │ ├── cdrvsy.f │ ├── cdrvsy_rook.f │ ├── cdrvsyx.f │ ├── cebchvxx.f │ ├── cerrge.f │ ├── cerrgex.f │ ├── cerrgt.f │ ├── cerrhe.f │ ├── cerrhex.f │ ├── cerrlq.f │ ├── cerrls.f │ ├── cerrpo.f │ ├── cerrpox.f │ ├── cerrps.f │ ├── cerrql.f │ ├── cerrqp.f │ ├── cerrqr.f │ ├── cerrqrt.f │ ├── cerrqrtp.f │ ├── cerrrfp.f │ ├── cerrrq.f │ ├── cerrsy.f │ ├── cerrsyx.f │ ├── cerrtr.f │ ├── cerrtz.f │ ├── cerrvx.f │ ├── cerrvxx.f │ ├── cgbt01.f │ ├── cgbt02.f │ ├── cgbt05.f │ ├── cgelqs.f │ ├── cgennd.f │ ├── cgeqls.f │ ├── cgeqrs.f │ ├── cgerqs.f │ ├── cget01.f │ ├── cget02.f │ ├── cget03.f │ ├── cget04.f │ ├── cget07.f │ ├── cgtt01.f │ ├── cgtt02.f │ ├── cgtt05.f │ ├── chet01.f │ ├── chet01_rook.f │ ├── chkxer.f │ ├── chpt01.f │ ├── clahilb.f │ ├── claipd.f │ ├── claptm.f │ ├── clarhs.f │ ├── clatb4.f │ ├── clatb5.f │ ├── clatsp.f │ ├── clatsy.f │ ├── clattb.f │ ├── clattp.f │ ├── clattr.f │ ├── clavhe.f │ ├── clavhe_rook.f │ ├── clavhp.f │ ├── clavsp.f │ ├── clavsy.f │ ├── clavsy_rook.f │ ├── clqt01.f │ ├── clqt02.f │ ├── clqt03.f │ ├── cpbt01.f │ ├── cpbt02.f │ ├── cpbt05.f │ ├── cpot01.f │ ├── cpot02.f │ ├── cpot03.f │ ├── cpot05.f │ ├── cppt01.f │ ├── cppt02.f │ ├── cppt03.f │ ├── cppt05.f │ ├── cpst01.f │ ├── cptt01.f │ ├── cptt02.f │ ├── cptt05.f │ ├── cqlt01.f │ ├── cqlt02.f │ ├── cqlt03.f │ ├── cqpt01.f │ ├── cqrt01.f │ ├── cqrt01p.f │ ├── cqrt02.f │ ├── cqrt03.f │ ├── cqrt04.f │ ├── cqrt05.f │ ├── cqrt11.f │ ├── cqrt12.f │ ├── cqrt13.f │ ├── cqrt14.f │ ├── cqrt15.f │ ├── cqrt16.f │ ├── cqrt17.f │ ├── crqt01.f │ ├── crqt02.f │ ├── crqt03.f │ ├── crzt01.f │ ├── crzt02.f │ ├── csbmv.f │ ├── cspt01.f │ ├── cspt02.f │ ├── cspt03.f │ ├── csyt01.f │ ├── csyt01_rook.f │ ├── csyt02.f │ ├── csyt03.f │ ├── ctbt02.f │ ├── ctbt03.f │ ├── ctbt05.f │ ├── ctbt06.f │ ├── ctpt01.f │ ├── ctpt02.f │ ├── ctpt03.f │ ├── ctpt05.f │ ├── ctpt06.f │ ├── ctrt01.f │ ├── ctrt02.f │ ├── ctrt03.f │ ├── ctrt05.f │ ├── ctrt06.f │ ├── dchkaa.f │ ├── dchkab.f │ ├── dchkeq.f │ ├── dchkgb.f │ ├── dchkge.f │ ├── dchkgt.f │ ├── dchklq.f │ ├── dchkpb.f │ ├── dchkpo.f │ ├── dchkpp.f │ ├── dchkps.f │ ├── dchkpt.f │ ├── dchkq3.f │ ├── dchkql.f │ ├── dchkqr.f │ ├── dchkqrt.f │ ├── dchkqrtp.f │ ├── dchkrfp.f │ ├── dchkrq.f │ ├── dchksp.f │ ├── dchksy.f │ ├── dchksy_rook.f │ ├── dchktb.f │ ├── dchktp.f │ ├── dchktr.f │ ├── dchktz.f │ ├── ddrvab.f │ ├── ddrvac.f │ ├── ddrvgb.f │ ├── ddrvgbx.f │ ├── ddrvge.f │ ├── ddrvgex.f │ ├── ddrvgt.f │ ├── ddrvls.f │ ├── ddrvpb.f │ ├── ddrvpo.f │ ├── ddrvpox.f │ ├── ddrvpp.f │ ├── ddrvpt.f │ ├── ddrvrf1.f │ ├── ddrvrf2.f │ ├── ddrvrf3.f │ ├── ddrvrf4.f │ ├── ddrvrfp.f │ ├── ddrvsp.f │ ├── ddrvsy.f │ ├── ddrvsy_rook.f │ ├── ddrvsyx.f │ ├── debchvxx.f │ ├── derrab.f │ ├── derrac.f │ ├── derrge.f │ ├── derrgex.f │ ├── derrgt.f │ ├── derrlq.f │ ├── derrls.f │ ├── derrpo.f │ ├── derrpox.f │ ├── derrps.f │ ├── derrql.f │ ├── derrqp.f │ ├── derrqr.f │ ├── derrqrt.f │ ├── derrqrtp.f │ ├── derrrfp.f │ ├── derrrq.f │ ├── derrsy.f │ ├── derrsyx.f │ ├── derrtr.f │ ├── derrtz.f │ ├── derrvx.f │ ├── derrvxx.f │ ├── dgbt01.f │ ├── dgbt02.f │ ├── dgbt05.f │ ├── dgelqs.f │ ├── dgennd.f │ ├── dgeqls.f │ ├── dgeqrs.f │ ├── dgerqs.f │ ├── dget01.f │ ├── dget02.f │ ├── dget03.f │ ├── dget04.f │ ├── dget06.f │ ├── dget07.f │ ├── dget08.f │ ├── dgtt01.f │ ├── dgtt02.f │ ├── dgtt05.f │ ├── dlahilb.f │ ├── dlaord.f │ ├── dlaptm.f │ ├── dlarhs.f │ ├── dlatb4.f │ ├── dlatb5.f │ ├── dlattb.f │ ├── dlattp.f │ ├── dlattr.f │ ├── dlavsp.f │ ├── dlavsy.f │ ├── dlavsy_rook.f │ ├── dlqt01.f │ ├── dlqt02.f │ ├── dlqt03.f │ ├── dpbt01.f │ ├── dpbt02.f │ ├── dpbt05.f │ ├── dpot01.f │ ├── dpot02.f │ ├── dpot03.f │ ├── dpot05.f │ ├── dpot06.f │ ├── dppt01.f │ ├── dppt02.f │ ├── dppt03.f │ ├── dppt05.f │ ├── dpst01.f │ ├── dptt01.f │ ├── dptt02.f │ ├── dptt05.f │ ├── dqlt01.f │ ├── dqlt02.f │ ├── dqlt03.f │ ├── dqpt01.f │ ├── dqrt01.f │ ├── dqrt01p.f │ ├── dqrt02.f │ ├── dqrt03.f │ ├── dqrt04.f │ ├── dqrt05.f │ ├── dqrt11.f │ ├── dqrt12.f │ ├── dqrt13.f │ ├── dqrt14.f │ ├── dqrt15.f │ ├── dqrt16.f │ ├── dqrt17.f │ ├── drqt01.f │ ├── drqt02.f │ ├── drqt03.f │ ├── drzt01.f │ ├── drzt02.f │ ├── dspt01.f │ ├── dsyt01.f │ ├── dsyt01_rook.f │ ├── dtbt02.f │ ├── dtbt03.f │ ├── dtbt05.f │ ├── dtbt06.f │ ├── dtpt01.f │ ├── dtpt02.f │ ├── dtpt03.f │ ├── dtpt05.f │ ├── dtpt06.f │ ├── dtrt01.f │ ├── dtrt02.f │ ├── dtrt03.f │ ├── dtrt05.f │ ├── dtrt06.f │ ├── icopy.f │ ├── ilaenv.f │ ├── schkaa.f │ ├── schkeq.f │ ├── schkgb.f │ ├── schkge.f │ ├── schkgt.f │ ├── schklq.f │ ├── schkpb.f │ ├── schkpo.f │ ├── schkpp.f │ ├── schkps.f │ ├── schkpt.f │ ├── schkq3.f │ ├── schkql.f │ ├── schkqr.f │ ├── schkqrt.f │ ├── schkqrtp.f │ ├── schkrfp.f │ ├── schkrq.f │ ├── schksp.f │ ├── schksy.f │ ├── schksy_rook.f │ ├── schktb.f │ ├── schktp.f │ ├── schktr.f │ ├── schktz.f │ ├── sdrvgb.f │ ├── sdrvgbx.f │ ├── sdrvge.f │ ├── sdrvgex.f │ ├── sdrvgt.f │ ├── sdrvls.f │ ├── sdrvpb.f │ ├── sdrvpo.f │ ├── sdrvpox.f │ ├── sdrvpp.f │ ├── sdrvpt.f │ ├── sdrvrf1.f │ ├── sdrvrf2.f │ ├── sdrvrf3.f │ ├── sdrvrf4.f │ ├── sdrvrfp.f │ ├── sdrvsp.f │ ├── sdrvsy.f │ ├── sdrvsy_rook.f │ ├── sdrvsyx.f │ ├── sebchvxx.f │ ├── serrge.f │ ├── serrgex.f │ ├── serrgt.f │ ├── serrlq.f │ ├── serrls.f │ ├── serrpo.f │ ├── serrpox.f │ ├── serrps.f │ ├── serrql.f │ ├── serrqp.f │ ├── serrqr.f │ ├── serrqrt.f │ ├── serrqrtp.f │ ├── serrrfp.f │ ├── serrrq.f │ ├── serrsy.f │ ├── serrsyx.f │ ├── serrtr.f │ ├── serrtz.f │ ├── serrvx.f │ ├── serrvxx.f │ ├── sgbt01.f │ ├── sgbt02.f │ ├── sgbt05.f │ ├── sgelqs.f │ ├── sgennd.f │ ├── sgeqls.f │ ├── sgeqrs.f │ ├── sgerqs.f │ ├── sget01.f │ ├── sget02.f │ ├── sget03.f │ ├── sget04.f │ ├── sget06.f │ ├── sget07.f │ ├── sgtt01.f │ ├── sgtt02.f │ ├── sgtt05.f │ ├── slahilb.f │ ├── slaord.f │ ├── slaptm.f │ ├── slarhs.f │ ├── slatb4.f │ ├── slatb5.f │ ├── slattb.f │ ├── slattp.f │ ├── slattr.f │ ├── slavsp.f │ ├── slavsy.f │ ├── slavsy_rook.f │ ├── slqt01.f │ ├── slqt02.f │ ├── slqt03.f │ ├── spbt01.f │ ├── spbt02.f │ ├── spbt05.f │ ├── spot01.f │ ├── spot02.f │ ├── spot03.f │ ├── spot05.f │ ├── sppt01.f │ ├── sppt02.f │ ├── sppt03.f │ ├── sppt05.f │ ├── spst01.f │ ├── sptt01.f │ ├── sptt02.f │ ├── sptt05.f │ ├── sqlt01.f │ ├── sqlt02.f │ ├── sqlt03.f │ ├── sqpt01.f │ ├── sqrt01.f │ ├── sqrt01p.f │ ├── sqrt02.f │ ├── sqrt03.f │ ├── sqrt04.f │ ├── sqrt05.f │ ├── sqrt11.f │ ├── sqrt12.f │ ├── sqrt13.f │ ├── sqrt14.f │ ├── sqrt15.f │ ├── sqrt16.f │ ├── sqrt17.f │ ├── srqt01.f │ ├── srqt02.f │ ├── srqt03.f │ ├── srzt01.f │ ├── srzt02.f │ ├── sspt01.f │ ├── ssyt01.f │ ├── ssyt01_rook.f │ ├── stbt02.f │ ├── stbt03.f │ ├── stbt05.f │ ├── stbt06.f │ ├── stpt01.f │ ├── stpt02.f │ ├── stpt03.f │ ├── stpt05.f │ ├── stpt06.f │ ├── strt01.f │ ├── strt02.f │ ├── strt03.f │ ├── strt05.f │ ├── strt06.f │ ├── xerbla.f │ ├── xlaenv.f │ ├── zchkaa.f │ ├── zchkab.f │ ├── zchkeq.f │ ├── zchkgb.f │ ├── zchkge.f │ ├── zchkgt.f │ ├── zchkhe.f │ ├── zchkhe_rook.f │ ├── zchkhp.f │ ├── zchklq.f │ ├── zchkpb.f │ ├── zchkpo.f │ ├── zchkpp.f │ ├── zchkps.f │ ├── zchkpt.f │ ├── zchkq3.f │ ├── zchkql.f │ ├── zchkqr.f │ ├── zchkqrt.f │ ├── zchkqrtp.f │ ├── zchkrfp.f │ ├── zchkrq.f │ ├── zchksp.f │ ├── zchksy.f │ ├── zchksy_rook.f │ ├── zchktb.f │ ├── zchktp.f │ ├── zchktr.f │ ├── zchktz.f │ ├── zdrvab.f │ ├── zdrvac.f │ ├── zdrvgb.f │ ├── zdrvgbx.f │ ├── zdrvge.f │ ├── zdrvgex.f │ ├── zdrvgt.f │ ├── zdrvhe.f │ ├── zdrvhe_rook.f │ ├── zdrvhex.f │ ├── zdrvhp.f │ ├── zdrvls.f │ ├── zdrvpb.f │ ├── zdrvpo.f │ ├── zdrvpox.f │ ├── zdrvpp.f │ ├── zdrvpt.f │ ├── zdrvrf1.f │ ├── zdrvrf2.f │ ├── zdrvrf3.f │ ├── zdrvrf4.f │ ├── zdrvrfp.f │ ├── zdrvsp.f │ ├── zdrvsy.f │ ├── zdrvsy_rook.f │ ├── zdrvsyx.f │ ├── zebchvxx.f │ ├── zerrab.f │ ├── zerrac.f │ ├── zerrge.f │ ├── zerrgex.f │ ├── zerrgt.f │ ├── zerrhe.f │ ├── zerrhex.f │ ├── zerrlq.f │ ├── zerrls.f │ ├── zerrpo.f │ ├── zerrpox.f │ ├── zerrps.f │ ├── zerrql.f │ ├── zerrqp.f │ ├── zerrqr.f │ ├── zerrqrt.f │ ├── zerrqrtp.f │ ├── zerrrfp.f │ ├── zerrrq.f │ ├── zerrsy.f │ ├── zerrsyx.f │ ├── zerrtr.f │ ├── zerrtz.f │ ├── zerrvx.f │ ├── zerrvxx.f │ ├── zgbt01.f │ ├── zgbt02.f │ ├── zgbt05.f │ ├── zgelqs.f │ ├── zgennd.f │ ├── zgeqls.f │ ├── zgeqrs.f │ ├── zgerqs.f │ ├── zget01.f │ ├── zget02.f │ ├── zget03.f │ ├── zget04.f │ ├── zget07.f │ ├── zget08.f │ ├── zgtt01.f │ ├── zgtt02.f │ ├── zgtt05.f │ ├── zhet01.f │ ├── zhet01_rook.f │ ├── zhpt01.f │ ├── zlahilb.f │ ├── zlaipd.f │ ├── zlaptm.f │ ├── zlarhs.f │ ├── zlatb4.f │ ├── zlatb5.f │ ├── zlatsp.f │ ├── zlatsy.f │ ├── zlattb.f │ ├── zlattp.f │ ├── zlattr.f │ ├── zlavhe.f │ ├── zlavhe_rook.f │ ├── zlavhp.f │ ├── zlavsp.f │ ├── zlavsy.f │ ├── zlavsy_rook.f │ ├── zlqt01.f │ ├── zlqt02.f │ ├── zlqt03.f │ ├── zpbt01.f │ ├── zpbt02.f │ ├── zpbt05.f │ ├── zpot01.f │ ├── zpot02.f │ ├── zpot03.f │ ├── zpot05.f │ ├── zpot06.f │ ├── zppt01.f │ ├── zppt02.f │ ├── zppt03.f │ ├── zppt05.f │ ├── zpst01.f │ ├── zptt01.f │ ├── zptt02.f │ ├── zptt05.f │ ├── zqlt01.f │ ├── zqlt02.f │ ├── zqlt03.f │ ├── zqpt01.f │ ├── zqrt01.f │ ├── zqrt01p.f │ ├── zqrt02.f │ ├── zqrt03.f │ ├── zqrt04.f │ ├── zqrt05.f │ ├── zqrt11.f │ ├── zqrt12.f │ ├── zqrt13.f │ ├── zqrt14.f │ ├── zqrt15.f │ ├── zqrt16.f │ ├── zqrt17.f │ ├── zrqt01.f │ ├── zrqt02.f │ ├── zrqt03.f │ ├── zrzt01.f │ ├── zrzt02.f │ ├── zsbmv.f │ ├── zspt01.f │ ├── zspt02.f │ ├── zspt03.f │ ├── zsyt01.f │ ├── zsyt01_rook.f │ ├── zsyt02.f │ ├── zsyt03.f │ ├── ztbt02.f │ ├── ztbt03.f │ ├── ztbt05.f │ ├── ztbt06.f │ ├── ztpt01.f │ ├── ztpt02.f │ ├── ztpt03.f │ ├── ztpt05.f │ ├── ztpt06.f │ ├── ztrt01.f │ ├── ztrt02.f │ ├── ztrt03.f │ ├── ztrt05.f │ └── ztrt06.f ├── MATGEN │ ├── CMakeLists.txt │ ├── Makefile │ ├── clagge.f │ ├── claghe.f │ ├── clagsy.f │ ├── clahilb.f │ ├── clakf2.f │ ├── clarge.f │ ├── clarnd.f │ ├── claror.f │ ├── clarot.f │ ├── clatm1.f │ ├── clatm2.f │ ├── clatm3.f │ ├── clatm5.f │ ├── clatm6.f │ ├── clatme.f │ ├── clatmr.f │ ├── clatms.f │ ├── clatmt.f │ ├── dlagge.f │ ├── dlagsy.f │ ├── dlahilb.f │ ├── dlakf2.f │ ├── dlaran.f │ ├── dlarge.f │ ├── dlarnd.f │ ├── dlaror.f │ ├── dlarot.f │ ├── dlatm1.f │ ├── dlatm2.f │ ├── dlatm3.f │ ├── dlatm5.f │ ├── dlatm6.f │ ├── dlatm7.f │ ├── dlatme.f │ ├── dlatmr.f │ ├── dlatms.f │ ├── dlatmt.f │ ├── slagge.f │ ├── slagsy.f │ ├── slahilb.f │ ├── slakf2.f │ ├── slaran.f │ ├── slarge.f │ ├── slarnd.f │ ├── slaror.f │ ├── slarot.f │ ├── slatm1.f │ ├── slatm2.f │ ├── slatm3.f │ ├── slatm5.f │ ├── slatm6.f │ ├── slatm7.f │ ├── slatme.f │ ├── slatmr.f │ ├── slatms.f │ ├── slatmt.f │ ├── zlagge.f │ ├── zlaghe.f │ ├── zlagsy.f │ ├── zlahilb.f │ ├── zlakf2.f │ ├── zlarge.f │ ├── zlarnd.f │ ├── zlaror.f │ ├── zlarot.f │ ├── zlatm1.f │ ├── zlatm2.f │ ├── zlatm3.f │ ├── zlatm5.f │ ├── zlatm6.f │ ├── zlatme.f │ ├── zlatmr.f │ ├── zlatms.f │ └── zlatmt.f ├── Makefile ├── cbak.in ├── cbal.in ├── cbb.in ├── cec.in ├── ced.in ├── cgbak.in ├── cgbal.in ├── cgd.in ├── cgg.in ├── csb.in ├── csd.in ├── csg.in ├── ctest.in ├── ctest_rfp.in ├── dbak.in ├── dbal.in ├── dbb.in ├── dec.in ├── ded.in ├── dgbak.in ├── dgbal.in ├── dgd.in ├── dgg.in ├── dsb.in ├── dsg.in ├── dstest.in ├── dtest.in ├── dtest_rfp.in ├── glm.in ├── gqr.in ├── gsv.in ├── lse.in ├── nep.in ├── runtest.cmake ├── sbak.in ├── sbal.in ├── sbb.in ├── sec.in ├── sed.in ├── sep.in ├── sgbak.in ├── sgbal.in ├── sgd.in ├── sgg.in ├── ssb.in ├── ssg.in ├── stest.in ├── stest_rfp.in ├── svd.in ├── zbak.in ├── zbal.in ├── zbb.in ├── zctest.in ├── zec.in ├── zed.in ├── zgbak.in ├── zgbal.in ├── zgd.in ├── zgg.in ├── zsb.in ├── zsg.in ├── ztest.in └── ztest_rfp.in ├── lapack.pc.in ├── lapack_build.cmake ├── lapack_testing.py └── make.inc.example /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.lapack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/Makefile.lapack -------------------------------------------------------------------------------- /Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/Makefile.linux -------------------------------------------------------------------------------- /Makefile.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/Makefile.windows -------------------------------------------------------------------------------- /Math.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/Math.dyalog -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/README.md -------------------------------------------------------------------------------- /fftw/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/AUTHORS -------------------------------------------------------------------------------- /fftw/CONVENTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/CONVENTIONS -------------------------------------------------------------------------------- /fftw/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/COPYING -------------------------------------------------------------------------------- /fftw/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/COPYRIGHT -------------------------------------------------------------------------------- /fftw/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/ChangeLog -------------------------------------------------------------------------------- /fftw/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/INSTALL -------------------------------------------------------------------------------- /fftw/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/Makefile.am -------------------------------------------------------------------------------- /fftw/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/Makefile.in -------------------------------------------------------------------------------- /fftw/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/NEWS -------------------------------------------------------------------------------- /fftw/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/README -------------------------------------------------------------------------------- /fftw/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/TODO -------------------------------------------------------------------------------- /fftw/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/aclocal.m4 -------------------------------------------------------------------------------- /fftw/api/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/Makefile.am -------------------------------------------------------------------------------- /fftw/api/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/Makefile.in -------------------------------------------------------------------------------- /fftw/api/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/api.h -------------------------------------------------------------------------------- /fftw/api/apiplan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/apiplan.c -------------------------------------------------------------------------------- /fftw/api/configure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/configure.c -------------------------------------------------------------------------------- /fftw/api/dyalog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/dyalog.c -------------------------------------------------------------------------------- /fftw/api/execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/execute.c -------------------------------------------------------------------------------- /fftw/api/f03api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/f03api.sh -------------------------------------------------------------------------------- /fftw/api/f77api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/f77api.c -------------------------------------------------------------------------------- /fftw/api/f77funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/f77funcs.h -------------------------------------------------------------------------------- /fftw/api/fftw3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/fftw3.f -------------------------------------------------------------------------------- /fftw/api/fftw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/fftw3.h -------------------------------------------------------------------------------- /fftw/api/fftw3l.f03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/fftw3l.f03 -------------------------------------------------------------------------------- /fftw/api/fftw3q.f03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/fftw3q.f03 -------------------------------------------------------------------------------- /fftw/api/flops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/flops.c -------------------------------------------------------------------------------- /fftw/api/genf03.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/genf03.pl -------------------------------------------------------------------------------- /fftw/api/guru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/guru.h -------------------------------------------------------------------------------- /fftw/api/guru64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/guru64.h -------------------------------------------------------------------------------- /fftw/api/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/malloc.c -------------------------------------------------------------------------------- /fftw/api/mapflags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/mapflags.c -------------------------------------------------------------------------------- /fftw/api/plan-dft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/plan-dft.c -------------------------------------------------------------------------------- /fftw/api/plan-r2r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/plan-r2r.c -------------------------------------------------------------------------------- /fftw/api/rdft2-pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/rdft2-pad.c -------------------------------------------------------------------------------- /fftw/api/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/version.c -------------------------------------------------------------------------------- /fftw/api/x77.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/api/x77.h -------------------------------------------------------------------------------- /fftw/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/bootstrap.sh -------------------------------------------------------------------------------- /fftw/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/compile -------------------------------------------------------------------------------- /fftw/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/config.guess -------------------------------------------------------------------------------- /fftw/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/config.h.in -------------------------------------------------------------------------------- /fftw/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/config.sub -------------------------------------------------------------------------------- /fftw/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/configure -------------------------------------------------------------------------------- /fftw/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/configure.ac -------------------------------------------------------------------------------- /fftw/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/depcomp -------------------------------------------------------------------------------- /fftw/dft/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/Makefile.am -------------------------------------------------------------------------------- /fftw/dft/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/Makefile.in -------------------------------------------------------------------------------- /fftw/dft/bluestein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/bluestein.c -------------------------------------------------------------------------------- /fftw/dft/buffered.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/buffered.c -------------------------------------------------------------------------------- /fftw/dft/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/conf.c -------------------------------------------------------------------------------- /fftw/dft/ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/ct.c -------------------------------------------------------------------------------- /fftw/dft/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/ct.h -------------------------------------------------------------------------------- /fftw/dft/dft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/dft.h -------------------------------------------------------------------------------- /fftw/dft/direct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/direct.c -------------------------------------------------------------------------------- /fftw/dft/generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/generic.c -------------------------------------------------------------------------------- /fftw/dft/indirect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/indirect.c -------------------------------------------------------------------------------- /fftw/dft/kdft-dif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/kdft-dif.c -------------------------------------------------------------------------------- /fftw/dft/kdft-dit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/kdft-dit.c -------------------------------------------------------------------------------- /fftw/dft/kdft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/kdft.c -------------------------------------------------------------------------------- /fftw/dft/nop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/nop.c -------------------------------------------------------------------------------- /fftw/dft/plan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/plan.c -------------------------------------------------------------------------------- /fftw/dft/problem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/problem.c -------------------------------------------------------------------------------- /fftw/dft/rader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/rader.c -------------------------------------------------------------------------------- /fftw/dft/rank-geq2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/rank-geq2.c -------------------------------------------------------------------------------- /fftw/dft/scalar/f.h: -------------------------------------------------------------------------------- 1 | #include "t.h" /* same stuff, no need to duplicate */ 2 | -------------------------------------------------------------------------------- /fftw/dft/scalar/n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/scalar/n.c -------------------------------------------------------------------------------- /fftw/dft/scalar/n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/scalar/n.h -------------------------------------------------------------------------------- /fftw/dft/scalar/q.h: -------------------------------------------------------------------------------- 1 | #include "t.h" /* same stuff, no need to duplicate */ 2 | -------------------------------------------------------------------------------- /fftw/dft/scalar/t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/scalar/t.c -------------------------------------------------------------------------------- /fftw/dft/scalar/t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/scalar/t.h -------------------------------------------------------------------------------- /fftw/dft/simd/n1b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/simd/n1b.h -------------------------------------------------------------------------------- /fftw/dft/simd/n1f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/simd/n1f.h -------------------------------------------------------------------------------- /fftw/dft/simd/n2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/simd/n2b.h -------------------------------------------------------------------------------- /fftw/dft/simd/n2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/simd/n2f.h -------------------------------------------------------------------------------- /fftw/dft/simd/n2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/simd/n2s.h -------------------------------------------------------------------------------- /fftw/dft/simd/q1b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/simd/q1b.h -------------------------------------------------------------------------------- /fftw/dft/simd/q1f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/simd/q1f.h -------------------------------------------------------------------------------- /fftw/dft/simd/t1b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/simd/t1b.h -------------------------------------------------------------------------------- /fftw/dft/simd/t1bu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/simd/t1bu.h -------------------------------------------------------------------------------- /fftw/dft/simd/t1f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/simd/t1f.h -------------------------------------------------------------------------------- /fftw/dft/simd/t1fu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/simd/t1fu.h -------------------------------------------------------------------------------- /fftw/dft/simd/t2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/simd/t2b.h -------------------------------------------------------------------------------- /fftw/dft/simd/t2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/simd/t2f.h -------------------------------------------------------------------------------- /fftw/dft/simd/t3b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/simd/t3b.h -------------------------------------------------------------------------------- /fftw/dft/simd/t3f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/simd/t3f.h -------------------------------------------------------------------------------- /fftw/dft/simd/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/simd/ts.h -------------------------------------------------------------------------------- /fftw/dft/solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/solve.c -------------------------------------------------------------------------------- /fftw/dft/zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/dft/zero.c -------------------------------------------------------------------------------- /fftw/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/doc/Makefile.am -------------------------------------------------------------------------------- /fftw/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/doc/Makefile.in -------------------------------------------------------------------------------- /fftw/doc/cindex.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/doc/cindex.texi -------------------------------------------------------------------------------- /fftw/doc/fftw3.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/doc/fftw3.info -------------------------------------------------------------------------------- /fftw/doc/fftw3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/doc/fftw3.pdf -------------------------------------------------------------------------------- /fftw/doc/fftw3.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/doc/fftw3.texi -------------------------------------------------------------------------------- /fftw/doc/findex.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/doc/findex.texi -------------------------------------------------------------------------------- /fftw/doc/intro.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/doc/intro.texi -------------------------------------------------------------------------------- /fftw/doc/mdate-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/doc/mdate-sh -------------------------------------------------------------------------------- /fftw/doc/mpi.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/doc/mpi.texi -------------------------------------------------------------------------------- /fftw/doc/other.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/doc/other.texi -------------------------------------------------------------------------------- /fftw/doc/rfftwnd.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/doc/rfftwnd.eps -------------------------------------------------------------------------------- /fftw/doc/rfftwnd.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/doc/rfftwnd.fig -------------------------------------------------------------------------------- /fftw/doc/rfftwnd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/doc/rfftwnd.pdf -------------------------------------------------------------------------------- /fftw/doc/stamp-vti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/doc/stamp-vti -------------------------------------------------------------------------------- /fftw/doc/texinfo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/doc/texinfo.tex -------------------------------------------------------------------------------- /fftw/fftw.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/fftw.pc.in -------------------------------------------------------------------------------- /fftw/genfft/c.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/genfft/c.ml -------------------------------------------------------------------------------- /fftw/genfft/c.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/genfft/c.mli -------------------------------------------------------------------------------- /fftw/genfft/conv.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/genfft/conv.ml -------------------------------------------------------------------------------- /fftw/genfft/conv.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/genfft/conv.mli -------------------------------------------------------------------------------- /fftw/genfft/dag.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/genfft/dag.ml -------------------------------------------------------------------------------- /fftw/genfft/dag.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/genfft/dag.mli -------------------------------------------------------------------------------- /fftw/genfft/expr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/genfft/expr.ml -------------------------------------------------------------------------------- /fftw/genfft/expr.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/genfft/expr.mli -------------------------------------------------------------------------------- /fftw/genfft/fft.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/genfft/fft.ml -------------------------------------------------------------------------------- /fftw/genfft/fft.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/genfft/fft.mli -------------------------------------------------------------------------------- /fftw/genfft/magic.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/genfft/magic.ml -------------------------------------------------------------------------------- /fftw/genfft/simd.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/genfft/simd.ml -------------------------------------------------------------------------------- /fftw/genfft/simd.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/genfft/simd.mli -------------------------------------------------------------------------------- /fftw/genfft/trig.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/genfft/trig.ml -------------------------------------------------------------------------------- /fftw/genfft/trig.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/genfft/trig.mli -------------------------------------------------------------------------------- /fftw/genfft/util.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/genfft/util.ml -------------------------------------------------------------------------------- /fftw/genfft/util.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/genfft/util.mli -------------------------------------------------------------------------------- /fftw/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/install-sh -------------------------------------------------------------------------------- /fftw/kernel/align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/align.c -------------------------------------------------------------------------------- /fftw/kernel/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/alloc.c -------------------------------------------------------------------------------- /fftw/kernel/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/assert.c -------------------------------------------------------------------------------- /fftw/kernel/awake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/awake.c -------------------------------------------------------------------------------- /fftw/kernel/cpy1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/cpy1d.c -------------------------------------------------------------------------------- /fftw/kernel/cpy2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/cpy2d.c -------------------------------------------------------------------------------- /fftw/kernel/ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/ct.c -------------------------------------------------------------------------------- /fftw/kernel/cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/cycle.h -------------------------------------------------------------------------------- /fftw/kernel/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/debug.c -------------------------------------------------------------------------------- /fftw/kernel/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/hash.c -------------------------------------------------------------------------------- /fftw/kernel/iabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/iabs.c -------------------------------------------------------------------------------- /fftw/kernel/ifftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/ifftw.h -------------------------------------------------------------------------------- /fftw/kernel/kalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/kalloc.c -------------------------------------------------------------------------------- /fftw/kernel/md5-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/md5-1.c -------------------------------------------------------------------------------- /fftw/kernel/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/md5.c -------------------------------------------------------------------------------- /fftw/kernel/minmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/minmax.c -------------------------------------------------------------------------------- /fftw/kernel/ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/ops.c -------------------------------------------------------------------------------- /fftw/kernel/plan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/plan.c -------------------------------------------------------------------------------- /fftw/kernel/primes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/primes.c -------------------------------------------------------------------------------- /fftw/kernel/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/print.c -------------------------------------------------------------------------------- /fftw/kernel/rader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/rader.c -------------------------------------------------------------------------------- /fftw/kernel/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/scan.c -------------------------------------------------------------------------------- /fftw/kernel/solver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/solver.c -------------------------------------------------------------------------------- /fftw/kernel/stride.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/stride.c -------------------------------------------------------------------------------- /fftw/kernel/tensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/tensor.c -------------------------------------------------------------------------------- /fftw/kernel/tile2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/tile2d.c -------------------------------------------------------------------------------- /fftw/kernel/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/timer.c -------------------------------------------------------------------------------- /fftw/kernel/trig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/kernel/trig.c -------------------------------------------------------------------------------- /fftw/libbench2/mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/libbench2/mp.c -------------------------------------------------------------------------------- /fftw/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/ltmain.sh -------------------------------------------------------------------------------- /fftw/m4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/m4/Makefile.am -------------------------------------------------------------------------------- /fftw/m4/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/m4/Makefile.in -------------------------------------------------------------------------------- /fftw/m4/acx_mpi.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/m4/acx_mpi.m4 -------------------------------------------------------------------------------- /fftw/m4/ax_openmp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/m4/ax_openmp.m4 -------------------------------------------------------------------------------- /fftw/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/m4/libtool.m4 -------------------------------------------------------------------------------- /fftw/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/m4/ltoptions.m4 -------------------------------------------------------------------------------- /fftw/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/m4/ltsugar.m4 -------------------------------------------------------------------------------- /fftw/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/m4/ltversion.m4 -------------------------------------------------------------------------------- /fftw/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/missing -------------------------------------------------------------------------------- /fftw/mpi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/Makefile.am -------------------------------------------------------------------------------- /fftw/mpi/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/Makefile.in -------------------------------------------------------------------------------- /fftw/mpi/any-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/any-true.c -------------------------------------------------------------------------------- /fftw/mpi/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/api.c -------------------------------------------------------------------------------- /fftw/mpi/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/block.c -------------------------------------------------------------------------------- /fftw/mpi/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/conf.c -------------------------------------------------------------------------------- /fftw/mpi/dft-rank1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/dft-rank1.c -------------------------------------------------------------------------------- /fftw/mpi/dft-solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/dft-solve.c -------------------------------------------------------------------------------- /fftw/mpi/dtensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/dtensor.c -------------------------------------------------------------------------------- /fftw/mpi/f03-wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/f03-wrap.c -------------------------------------------------------------------------------- /fftw/mpi/f03-wrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/f03-wrap.sh -------------------------------------------------------------------------------- /fftw/mpi/f03api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/f03api.sh -------------------------------------------------------------------------------- /fftw/mpi/fftw3-mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/fftw3-mpi.h -------------------------------------------------------------------------------- /fftw/mpi/ifftw-mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/ifftw-mpi.h -------------------------------------------------------------------------------- /fftw/mpi/mpi-bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/mpi-bench.c -------------------------------------------------------------------------------- /fftw/mpi/mpi-dft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/mpi-dft.h -------------------------------------------------------------------------------- /fftw/mpi/mpi-rdft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/mpi-rdft.h -------------------------------------------------------------------------------- /fftw/mpi/mpi-rdft2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/mpi-rdft2.h -------------------------------------------------------------------------------- /fftw/mpi/rearrange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/rearrange.c -------------------------------------------------------------------------------- /fftw/mpi/testsched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/mpi/testsched.c -------------------------------------------------------------------------------- /fftw/rdft/buffered.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/buffered.c -------------------------------------------------------------------------------- /fftw/rdft/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/conf.c -------------------------------------------------------------------------------- /fftw/rdft/ct-hc2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/ct-hc2c.c -------------------------------------------------------------------------------- /fftw/rdft/ct-hc2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/ct-hc2c.h -------------------------------------------------------------------------------- /fftw/rdft/dft-r2hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/dft-r2hc.c -------------------------------------------------------------------------------- /fftw/rdft/dht-r2hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/dht-r2hc.c -------------------------------------------------------------------------------- /fftw/rdft/direct2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/direct2.c -------------------------------------------------------------------------------- /fftw/rdft/generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/generic.c -------------------------------------------------------------------------------- /fftw/rdft/hc2hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/hc2hc.c -------------------------------------------------------------------------------- /fftw/rdft/hc2hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/hc2hc.h -------------------------------------------------------------------------------- /fftw/rdft/indirect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/indirect.c -------------------------------------------------------------------------------- /fftw/rdft/khc2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/khc2c.c -------------------------------------------------------------------------------- /fftw/rdft/khc2hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/khc2hc.c -------------------------------------------------------------------------------- /fftw/rdft/kr2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/kr2c.c -------------------------------------------------------------------------------- /fftw/rdft/kr2r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/kr2r.c -------------------------------------------------------------------------------- /fftw/rdft/nop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/nop.c -------------------------------------------------------------------------------- /fftw/rdft/nop2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/nop2.c -------------------------------------------------------------------------------- /fftw/rdft/plan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/plan.c -------------------------------------------------------------------------------- /fftw/rdft/plan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/plan2.c -------------------------------------------------------------------------------- /fftw/rdft/problem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/problem.c -------------------------------------------------------------------------------- /fftw/rdft/problem2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/problem2.c -------------------------------------------------------------------------------- /fftw/rdft/rank0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/rank0.c -------------------------------------------------------------------------------- /fftw/rdft/rdft-dht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/rdft-dht.c -------------------------------------------------------------------------------- /fftw/rdft/rdft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/rdft.h -------------------------------------------------------------------------------- /fftw/rdft/solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/solve.c -------------------------------------------------------------------------------- /fftw/rdft/solve2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/rdft/solve2.c -------------------------------------------------------------------------------- /fftw/reodft/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/reodft/conf.c -------------------------------------------------------------------------------- /fftw/reodft/reodft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/reodft/reodft.h -------------------------------------------------------------------------------- /fftw/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/tests/README -------------------------------------------------------------------------------- /fftw/tests/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/tests/bench.c -------------------------------------------------------------------------------- /fftw/tests/check.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/tests/check.pl -------------------------------------------------------------------------------- /fftw/tests/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/tests/hook.c -------------------------------------------------------------------------------- /fftw/threads/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/threads/api.c -------------------------------------------------------------------------------- /fftw/threads/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/threads/conf.c -------------------------------------------------------------------------------- /fftw/threads/ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/threads/ct.c -------------------------------------------------------------------------------- /fftw/threads/hc2hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/fftw/threads/hc2hc.c -------------------------------------------------------------------------------- /lapack/CBLAS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/CBLAS/README -------------------------------------------------------------------------------- /lapack/DOCS/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/DOCS/Doxyfile -------------------------------------------------------------------------------- /lapack/DOCS/org2.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/DOCS/org2.ps -------------------------------------------------------------------------------- /lapack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/LICENSE -------------------------------------------------------------------------------- /lapack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/Makefile -------------------------------------------------------------------------------- /lapack/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/README -------------------------------------------------------------------------------- /lapack/SRC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/Makefile -------------------------------------------------------------------------------- /lapack/SRC/cbbcsd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cbbcsd.f -------------------------------------------------------------------------------- /lapack/SRC/cbdsqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cbdsqr.f -------------------------------------------------------------------------------- /lapack/SRC/cgbbrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgbbrd.f -------------------------------------------------------------------------------- /lapack/SRC/cgbcon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgbcon.f -------------------------------------------------------------------------------- /lapack/SRC/cgbequ.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgbequ.f -------------------------------------------------------------------------------- /lapack/SRC/cgbequb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgbequb.f -------------------------------------------------------------------------------- /lapack/SRC/cgbrfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgbrfs.f -------------------------------------------------------------------------------- /lapack/SRC/cgbrfsx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgbrfsx.f -------------------------------------------------------------------------------- /lapack/SRC/cgbsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgbsv.f -------------------------------------------------------------------------------- /lapack/SRC/cgbsvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgbsvx.f -------------------------------------------------------------------------------- /lapack/SRC/cgbsvxx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgbsvxx.f -------------------------------------------------------------------------------- /lapack/SRC/cgbtf2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgbtf2.f -------------------------------------------------------------------------------- /lapack/SRC/cgbtrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgbtrf.f -------------------------------------------------------------------------------- /lapack/SRC/cgbtrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgbtrs.f -------------------------------------------------------------------------------- /lapack/SRC/cgebak.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgebak.f -------------------------------------------------------------------------------- /lapack/SRC/cgebal.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgebal.f -------------------------------------------------------------------------------- /lapack/SRC/cgebd2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgebd2.f -------------------------------------------------------------------------------- /lapack/SRC/cgebrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgebrd.f -------------------------------------------------------------------------------- /lapack/SRC/cgecon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgecon.f -------------------------------------------------------------------------------- /lapack/SRC/cgeequ.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgeequ.f -------------------------------------------------------------------------------- /lapack/SRC/cgeequb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgeequb.f -------------------------------------------------------------------------------- /lapack/SRC/cgees.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgees.f -------------------------------------------------------------------------------- /lapack/SRC/cgeesx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgeesx.f -------------------------------------------------------------------------------- /lapack/SRC/cgeev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgeev.f -------------------------------------------------------------------------------- /lapack/SRC/cgeevx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgeevx.f -------------------------------------------------------------------------------- /lapack/SRC/cgehd2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgehd2.f -------------------------------------------------------------------------------- /lapack/SRC/cgehrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgehrd.f -------------------------------------------------------------------------------- /lapack/SRC/cgejsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgejsv.f -------------------------------------------------------------------------------- /lapack/SRC/cgelq2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgelq2.f -------------------------------------------------------------------------------- /lapack/SRC/cgelqf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgelqf.f -------------------------------------------------------------------------------- /lapack/SRC/cgels.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgels.f -------------------------------------------------------------------------------- /lapack/SRC/cgelsd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgelsd.f -------------------------------------------------------------------------------- /lapack/SRC/cgelss.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgelss.f -------------------------------------------------------------------------------- /lapack/SRC/cgelsy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgelsy.f -------------------------------------------------------------------------------- /lapack/SRC/cgemqrt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgemqrt.f -------------------------------------------------------------------------------- /lapack/SRC/cgeql2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgeql2.f -------------------------------------------------------------------------------- /lapack/SRC/cgeqlf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgeqlf.f -------------------------------------------------------------------------------- /lapack/SRC/cgeqp3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgeqp3.f -------------------------------------------------------------------------------- /lapack/SRC/cgeqr2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgeqr2.f -------------------------------------------------------------------------------- /lapack/SRC/cgeqr2p.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgeqr2p.f -------------------------------------------------------------------------------- /lapack/SRC/cgeqrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgeqrf.f -------------------------------------------------------------------------------- /lapack/SRC/cgeqrfp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgeqrfp.f -------------------------------------------------------------------------------- /lapack/SRC/cgeqrt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgeqrt.f -------------------------------------------------------------------------------- /lapack/SRC/cgeqrt2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgeqrt2.f -------------------------------------------------------------------------------- /lapack/SRC/cgeqrt3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgeqrt3.f -------------------------------------------------------------------------------- /lapack/SRC/cgerfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgerfs.f -------------------------------------------------------------------------------- /lapack/SRC/cgerfsx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgerfsx.f -------------------------------------------------------------------------------- /lapack/SRC/cgerq2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgerq2.f -------------------------------------------------------------------------------- /lapack/SRC/cgerqf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgerqf.f -------------------------------------------------------------------------------- /lapack/SRC/cgesc2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgesc2.f -------------------------------------------------------------------------------- /lapack/SRC/cgesdd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgesdd.f -------------------------------------------------------------------------------- /lapack/SRC/cgesv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgesv.f -------------------------------------------------------------------------------- /lapack/SRC/cgesvd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgesvd.f -------------------------------------------------------------------------------- /lapack/SRC/cgesvdx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgesvdx.f -------------------------------------------------------------------------------- /lapack/SRC/cgesvj.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgesvj.f -------------------------------------------------------------------------------- /lapack/SRC/cgesvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgesvx.f -------------------------------------------------------------------------------- /lapack/SRC/cgesvxx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgesvxx.f -------------------------------------------------------------------------------- /lapack/SRC/cgetc2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgetc2.f -------------------------------------------------------------------------------- /lapack/SRC/cgetf2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgetf2.f -------------------------------------------------------------------------------- /lapack/SRC/cgetrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgetrf.f -------------------------------------------------------------------------------- /lapack/SRC/cgetrf2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgetrf2.f -------------------------------------------------------------------------------- /lapack/SRC/cgetri.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgetri.f -------------------------------------------------------------------------------- /lapack/SRC/cgetrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgetrs.f -------------------------------------------------------------------------------- /lapack/SRC/cggbak.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cggbak.f -------------------------------------------------------------------------------- /lapack/SRC/cggbal.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cggbal.f -------------------------------------------------------------------------------- /lapack/SRC/cgges.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgges.f -------------------------------------------------------------------------------- /lapack/SRC/cgges3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgges3.f -------------------------------------------------------------------------------- /lapack/SRC/cggesx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cggesx.f -------------------------------------------------------------------------------- /lapack/SRC/cggev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cggev.f -------------------------------------------------------------------------------- /lapack/SRC/cggev3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cggev3.f -------------------------------------------------------------------------------- /lapack/SRC/cggevx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cggevx.f -------------------------------------------------------------------------------- /lapack/SRC/cggglm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cggglm.f -------------------------------------------------------------------------------- /lapack/SRC/cgghd3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgghd3.f -------------------------------------------------------------------------------- /lapack/SRC/cgghrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgghrd.f -------------------------------------------------------------------------------- /lapack/SRC/cgglse.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgglse.f -------------------------------------------------------------------------------- /lapack/SRC/cggqrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cggqrf.f -------------------------------------------------------------------------------- /lapack/SRC/cggrqf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cggrqf.f -------------------------------------------------------------------------------- /lapack/SRC/cggsvd3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cggsvd3.f -------------------------------------------------------------------------------- /lapack/SRC/cggsvp3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cggsvp3.f -------------------------------------------------------------------------------- /lapack/SRC/cgsvj0.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgsvj0.f -------------------------------------------------------------------------------- /lapack/SRC/cgsvj1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgsvj1.f -------------------------------------------------------------------------------- /lapack/SRC/cgtcon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgtcon.f -------------------------------------------------------------------------------- /lapack/SRC/cgtrfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgtrfs.f -------------------------------------------------------------------------------- /lapack/SRC/cgtsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgtsv.f -------------------------------------------------------------------------------- /lapack/SRC/cgtsvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgtsvx.f -------------------------------------------------------------------------------- /lapack/SRC/cgttrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgttrf.f -------------------------------------------------------------------------------- /lapack/SRC/cgttrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgttrs.f -------------------------------------------------------------------------------- /lapack/SRC/cgtts2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cgtts2.f -------------------------------------------------------------------------------- /lapack/SRC/chbev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chbev.f -------------------------------------------------------------------------------- /lapack/SRC/chbevd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chbevd.f -------------------------------------------------------------------------------- /lapack/SRC/chbevx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chbevx.f -------------------------------------------------------------------------------- /lapack/SRC/chbgst.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chbgst.f -------------------------------------------------------------------------------- /lapack/SRC/chbgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chbgv.f -------------------------------------------------------------------------------- /lapack/SRC/chbgvd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chbgvd.f -------------------------------------------------------------------------------- /lapack/SRC/chbgvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chbgvx.f -------------------------------------------------------------------------------- /lapack/SRC/chbtrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chbtrd.f -------------------------------------------------------------------------------- /lapack/SRC/checon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/checon.f -------------------------------------------------------------------------------- /lapack/SRC/cheequb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cheequb.f -------------------------------------------------------------------------------- /lapack/SRC/cheev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cheev.f -------------------------------------------------------------------------------- /lapack/SRC/cheevd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cheevd.f -------------------------------------------------------------------------------- /lapack/SRC/cheevr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cheevr.f -------------------------------------------------------------------------------- /lapack/SRC/cheevx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cheevx.f -------------------------------------------------------------------------------- /lapack/SRC/chegs2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chegs2.f -------------------------------------------------------------------------------- /lapack/SRC/chegst.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chegst.f -------------------------------------------------------------------------------- /lapack/SRC/chegv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chegv.f -------------------------------------------------------------------------------- /lapack/SRC/chegvd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chegvd.f -------------------------------------------------------------------------------- /lapack/SRC/chegvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chegvx.f -------------------------------------------------------------------------------- /lapack/SRC/cherfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cherfs.f -------------------------------------------------------------------------------- /lapack/SRC/cherfsx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cherfsx.f -------------------------------------------------------------------------------- /lapack/SRC/chesv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chesv.f -------------------------------------------------------------------------------- /lapack/SRC/chesvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chesvx.f -------------------------------------------------------------------------------- /lapack/SRC/chesvxx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chesvxx.f -------------------------------------------------------------------------------- /lapack/SRC/chetd2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chetd2.f -------------------------------------------------------------------------------- /lapack/SRC/chetf2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chetf2.f -------------------------------------------------------------------------------- /lapack/SRC/chetrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chetrd.f -------------------------------------------------------------------------------- /lapack/SRC/chetrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chetrf.f -------------------------------------------------------------------------------- /lapack/SRC/chetri.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chetri.f -------------------------------------------------------------------------------- /lapack/SRC/chetri2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chetri2.f -------------------------------------------------------------------------------- /lapack/SRC/chetrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chetrs.f -------------------------------------------------------------------------------- /lapack/SRC/chetrs2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chetrs2.f -------------------------------------------------------------------------------- /lapack/SRC/chfrk.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chfrk.f -------------------------------------------------------------------------------- /lapack/SRC/chgeqz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chgeqz.f -------------------------------------------------------------------------------- /lapack/SRC/chpcon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chpcon.f -------------------------------------------------------------------------------- /lapack/SRC/chpev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chpev.f -------------------------------------------------------------------------------- /lapack/SRC/chpevd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chpevd.f -------------------------------------------------------------------------------- /lapack/SRC/chpevx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chpevx.f -------------------------------------------------------------------------------- /lapack/SRC/chpgst.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chpgst.f -------------------------------------------------------------------------------- /lapack/SRC/chpgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chpgv.f -------------------------------------------------------------------------------- /lapack/SRC/chpgvd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chpgvd.f -------------------------------------------------------------------------------- /lapack/SRC/chpgvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chpgvx.f -------------------------------------------------------------------------------- /lapack/SRC/chprfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chprfs.f -------------------------------------------------------------------------------- /lapack/SRC/chpsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chpsv.f -------------------------------------------------------------------------------- /lapack/SRC/chpsvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chpsvx.f -------------------------------------------------------------------------------- /lapack/SRC/chptrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chptrd.f -------------------------------------------------------------------------------- /lapack/SRC/chptrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chptrf.f -------------------------------------------------------------------------------- /lapack/SRC/chptri.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chptri.f -------------------------------------------------------------------------------- /lapack/SRC/chptrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chptrs.f -------------------------------------------------------------------------------- /lapack/SRC/chsein.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chsein.f -------------------------------------------------------------------------------- /lapack/SRC/chseqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/chseqr.f -------------------------------------------------------------------------------- /lapack/SRC/clabrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clabrd.f -------------------------------------------------------------------------------- /lapack/SRC/clacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clacgv.f -------------------------------------------------------------------------------- /lapack/SRC/clacn2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clacn2.f -------------------------------------------------------------------------------- /lapack/SRC/clacon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clacon.f -------------------------------------------------------------------------------- /lapack/SRC/clacp2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clacp2.f -------------------------------------------------------------------------------- /lapack/SRC/clacpy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clacpy.f -------------------------------------------------------------------------------- /lapack/SRC/clacrm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clacrm.f -------------------------------------------------------------------------------- /lapack/SRC/clacrt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clacrt.f -------------------------------------------------------------------------------- /lapack/SRC/cladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cladiv.f -------------------------------------------------------------------------------- /lapack/SRC/claed0.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claed0.f -------------------------------------------------------------------------------- /lapack/SRC/claed7.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claed7.f -------------------------------------------------------------------------------- /lapack/SRC/claed8.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claed8.f -------------------------------------------------------------------------------- /lapack/SRC/claein.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claein.f -------------------------------------------------------------------------------- /lapack/SRC/claesy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claesy.f -------------------------------------------------------------------------------- /lapack/SRC/claev2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claev2.f -------------------------------------------------------------------------------- /lapack/SRC/clag2z.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clag2z.f -------------------------------------------------------------------------------- /lapack/SRC/clags2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clags2.f -------------------------------------------------------------------------------- /lapack/SRC/clagtm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clagtm.f -------------------------------------------------------------------------------- /lapack/SRC/clahef.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clahef.f -------------------------------------------------------------------------------- /lapack/SRC/clahqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clahqr.f -------------------------------------------------------------------------------- /lapack/SRC/clahr2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clahr2.f -------------------------------------------------------------------------------- /lapack/SRC/claic1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claic1.f -------------------------------------------------------------------------------- /lapack/SRC/clals0.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clals0.f -------------------------------------------------------------------------------- /lapack/SRC/clalsa.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clalsa.f -------------------------------------------------------------------------------- /lapack/SRC/clalsd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clalsd.f -------------------------------------------------------------------------------- /lapack/SRC/clangb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clangb.f -------------------------------------------------------------------------------- /lapack/SRC/clange.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clange.f -------------------------------------------------------------------------------- /lapack/SRC/clangt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clangt.f -------------------------------------------------------------------------------- /lapack/SRC/clanhb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clanhb.f -------------------------------------------------------------------------------- /lapack/SRC/clanhe.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clanhe.f -------------------------------------------------------------------------------- /lapack/SRC/clanhf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clanhf.f -------------------------------------------------------------------------------- /lapack/SRC/clanhp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clanhp.f -------------------------------------------------------------------------------- /lapack/SRC/clanhs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clanhs.f -------------------------------------------------------------------------------- /lapack/SRC/clanht.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clanht.f -------------------------------------------------------------------------------- /lapack/SRC/clansb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clansb.f -------------------------------------------------------------------------------- /lapack/SRC/clansp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clansp.f -------------------------------------------------------------------------------- /lapack/SRC/clansy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clansy.f -------------------------------------------------------------------------------- /lapack/SRC/clantb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clantb.f -------------------------------------------------------------------------------- /lapack/SRC/clantp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clantp.f -------------------------------------------------------------------------------- /lapack/SRC/clantr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clantr.f -------------------------------------------------------------------------------- /lapack/SRC/clapll.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clapll.f -------------------------------------------------------------------------------- /lapack/SRC/clapmr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clapmr.f -------------------------------------------------------------------------------- /lapack/SRC/clapmt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clapmt.f -------------------------------------------------------------------------------- /lapack/SRC/claqgb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claqgb.f -------------------------------------------------------------------------------- /lapack/SRC/claqge.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claqge.f -------------------------------------------------------------------------------- /lapack/SRC/claqhb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claqhb.f -------------------------------------------------------------------------------- /lapack/SRC/claqhe.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claqhe.f -------------------------------------------------------------------------------- /lapack/SRC/claqhp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claqhp.f -------------------------------------------------------------------------------- /lapack/SRC/claqp2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claqp2.f -------------------------------------------------------------------------------- /lapack/SRC/claqps.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claqps.f -------------------------------------------------------------------------------- /lapack/SRC/claqr0.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claqr0.f -------------------------------------------------------------------------------- /lapack/SRC/claqr1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claqr1.f -------------------------------------------------------------------------------- /lapack/SRC/claqr2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claqr2.f -------------------------------------------------------------------------------- /lapack/SRC/claqr3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claqr3.f -------------------------------------------------------------------------------- /lapack/SRC/claqr4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claqr4.f -------------------------------------------------------------------------------- /lapack/SRC/claqr5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claqr5.f -------------------------------------------------------------------------------- /lapack/SRC/claqsb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claqsb.f -------------------------------------------------------------------------------- /lapack/SRC/claqsp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claqsp.f -------------------------------------------------------------------------------- /lapack/SRC/claqsy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claqsy.f -------------------------------------------------------------------------------- /lapack/SRC/clar1v.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clar1v.f -------------------------------------------------------------------------------- /lapack/SRC/clar2v.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clar2v.f -------------------------------------------------------------------------------- /lapack/SRC/clarcm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clarcm.f -------------------------------------------------------------------------------- /lapack/SRC/clarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clarf.f -------------------------------------------------------------------------------- /lapack/SRC/clarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clarfb.f -------------------------------------------------------------------------------- /lapack/SRC/clarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clarfg.f -------------------------------------------------------------------------------- /lapack/SRC/clarfgp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clarfgp.f -------------------------------------------------------------------------------- /lapack/SRC/clarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clarft.f -------------------------------------------------------------------------------- /lapack/SRC/clarfx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clarfx.f -------------------------------------------------------------------------------- /lapack/SRC/clargv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clargv.f -------------------------------------------------------------------------------- /lapack/SRC/clarnv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clarnv.f -------------------------------------------------------------------------------- /lapack/SRC/clarrv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clarrv.f -------------------------------------------------------------------------------- /lapack/SRC/clartg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clartg.f -------------------------------------------------------------------------------- /lapack/SRC/clartv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clartv.f -------------------------------------------------------------------------------- /lapack/SRC/clarz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clarz.f -------------------------------------------------------------------------------- /lapack/SRC/clarzb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clarzb.f -------------------------------------------------------------------------------- /lapack/SRC/clarzt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clarzt.f -------------------------------------------------------------------------------- /lapack/SRC/clascl.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clascl.f -------------------------------------------------------------------------------- /lapack/SRC/clascl2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clascl2.f -------------------------------------------------------------------------------- /lapack/SRC/claset.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claset.f -------------------------------------------------------------------------------- /lapack/SRC/clasr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clasr.f -------------------------------------------------------------------------------- /lapack/SRC/classq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/classq.f -------------------------------------------------------------------------------- /lapack/SRC/claswp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/claswp.f -------------------------------------------------------------------------------- /lapack/SRC/clasyf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clasyf.f -------------------------------------------------------------------------------- /lapack/SRC/clatbs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clatbs.f -------------------------------------------------------------------------------- /lapack/SRC/clatdf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clatdf.f -------------------------------------------------------------------------------- /lapack/SRC/clatps.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clatps.f -------------------------------------------------------------------------------- /lapack/SRC/clatrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clatrd.f -------------------------------------------------------------------------------- /lapack/SRC/clatrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clatrs.f -------------------------------------------------------------------------------- /lapack/SRC/clatrz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clatrz.f -------------------------------------------------------------------------------- /lapack/SRC/clauu2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clauu2.f -------------------------------------------------------------------------------- /lapack/SRC/clauum.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/clauum.f -------------------------------------------------------------------------------- /lapack/SRC/cpbcon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpbcon.f -------------------------------------------------------------------------------- /lapack/SRC/cpbequ.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpbequ.f -------------------------------------------------------------------------------- /lapack/SRC/cpbrfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpbrfs.f -------------------------------------------------------------------------------- /lapack/SRC/cpbstf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpbstf.f -------------------------------------------------------------------------------- /lapack/SRC/cpbsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpbsv.f -------------------------------------------------------------------------------- /lapack/SRC/cpbsvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpbsvx.f -------------------------------------------------------------------------------- /lapack/SRC/cpbtf2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpbtf2.f -------------------------------------------------------------------------------- /lapack/SRC/cpbtrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpbtrf.f -------------------------------------------------------------------------------- /lapack/SRC/cpbtrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpbtrs.f -------------------------------------------------------------------------------- /lapack/SRC/cpftrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpftrf.f -------------------------------------------------------------------------------- /lapack/SRC/cpftri.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpftri.f -------------------------------------------------------------------------------- /lapack/SRC/cpftrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpftrs.f -------------------------------------------------------------------------------- /lapack/SRC/cpocon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpocon.f -------------------------------------------------------------------------------- /lapack/SRC/cpoequ.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpoequ.f -------------------------------------------------------------------------------- /lapack/SRC/cpoequb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpoequb.f -------------------------------------------------------------------------------- /lapack/SRC/cporfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cporfs.f -------------------------------------------------------------------------------- /lapack/SRC/cporfsx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cporfsx.f -------------------------------------------------------------------------------- /lapack/SRC/cposv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cposv.f -------------------------------------------------------------------------------- /lapack/SRC/cposvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cposvx.f -------------------------------------------------------------------------------- /lapack/SRC/cposvxx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cposvxx.f -------------------------------------------------------------------------------- /lapack/SRC/cpotf2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpotf2.f -------------------------------------------------------------------------------- /lapack/SRC/cpotrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpotrf.f -------------------------------------------------------------------------------- /lapack/SRC/cpotrf2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpotrf2.f -------------------------------------------------------------------------------- /lapack/SRC/cpotri.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpotri.f -------------------------------------------------------------------------------- /lapack/SRC/cpotrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpotrs.f -------------------------------------------------------------------------------- /lapack/SRC/cppcon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cppcon.f -------------------------------------------------------------------------------- /lapack/SRC/cppequ.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cppequ.f -------------------------------------------------------------------------------- /lapack/SRC/cpprfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpprfs.f -------------------------------------------------------------------------------- /lapack/SRC/cppsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cppsv.f -------------------------------------------------------------------------------- /lapack/SRC/cppsvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cppsvx.f -------------------------------------------------------------------------------- /lapack/SRC/cpptrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpptrf.f -------------------------------------------------------------------------------- /lapack/SRC/cpptri.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpptri.f -------------------------------------------------------------------------------- /lapack/SRC/cpptrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpptrs.f -------------------------------------------------------------------------------- /lapack/SRC/cpstf2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpstf2.f -------------------------------------------------------------------------------- /lapack/SRC/cpstrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpstrf.f -------------------------------------------------------------------------------- /lapack/SRC/cptcon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cptcon.f -------------------------------------------------------------------------------- /lapack/SRC/cpteqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpteqr.f -------------------------------------------------------------------------------- /lapack/SRC/cptrfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cptrfs.f -------------------------------------------------------------------------------- /lapack/SRC/cptsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cptsv.f -------------------------------------------------------------------------------- /lapack/SRC/cptsvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cptsvx.f -------------------------------------------------------------------------------- /lapack/SRC/cpttrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpttrf.f -------------------------------------------------------------------------------- /lapack/SRC/cpttrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cpttrs.f -------------------------------------------------------------------------------- /lapack/SRC/cptts2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cptts2.f -------------------------------------------------------------------------------- /lapack/SRC/crot.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/crot.f -------------------------------------------------------------------------------- /lapack/SRC/cspcon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cspcon.f -------------------------------------------------------------------------------- /lapack/SRC/cspmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cspmv.f -------------------------------------------------------------------------------- /lapack/SRC/cspr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cspr.f -------------------------------------------------------------------------------- /lapack/SRC/csprfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csprfs.f -------------------------------------------------------------------------------- /lapack/SRC/cspsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cspsv.f -------------------------------------------------------------------------------- /lapack/SRC/cspsvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cspsvx.f -------------------------------------------------------------------------------- /lapack/SRC/csptrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csptrf.f -------------------------------------------------------------------------------- /lapack/SRC/csptri.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csptri.f -------------------------------------------------------------------------------- /lapack/SRC/csptrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csptrs.f -------------------------------------------------------------------------------- /lapack/SRC/csrscl.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csrscl.f -------------------------------------------------------------------------------- /lapack/SRC/cstedc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cstedc.f -------------------------------------------------------------------------------- /lapack/SRC/cstegr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cstegr.f -------------------------------------------------------------------------------- /lapack/SRC/cstein.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cstein.f -------------------------------------------------------------------------------- /lapack/SRC/cstemr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cstemr.f -------------------------------------------------------------------------------- /lapack/SRC/csteqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csteqr.f -------------------------------------------------------------------------------- /lapack/SRC/csycon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csycon.f -------------------------------------------------------------------------------- /lapack/SRC/csyconv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csyconv.f -------------------------------------------------------------------------------- /lapack/SRC/csyequb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csyequb.f -------------------------------------------------------------------------------- /lapack/SRC/csymv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csymv.f -------------------------------------------------------------------------------- /lapack/SRC/csyr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csyr.f -------------------------------------------------------------------------------- /lapack/SRC/csyrfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csyrfs.f -------------------------------------------------------------------------------- /lapack/SRC/csyrfsx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csyrfsx.f -------------------------------------------------------------------------------- /lapack/SRC/csysv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csysv.f -------------------------------------------------------------------------------- /lapack/SRC/csysvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csysvx.f -------------------------------------------------------------------------------- /lapack/SRC/csysvxx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csysvxx.f -------------------------------------------------------------------------------- /lapack/SRC/csytf2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csytf2.f -------------------------------------------------------------------------------- /lapack/SRC/csytrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csytrf.f -------------------------------------------------------------------------------- /lapack/SRC/csytri.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csytri.f -------------------------------------------------------------------------------- /lapack/SRC/csytri2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csytri2.f -------------------------------------------------------------------------------- /lapack/SRC/csytrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csytrs.f -------------------------------------------------------------------------------- /lapack/SRC/csytrs2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/csytrs2.f -------------------------------------------------------------------------------- /lapack/SRC/ctbcon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctbcon.f -------------------------------------------------------------------------------- /lapack/SRC/ctbrfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctbrfs.f -------------------------------------------------------------------------------- /lapack/SRC/ctbtrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctbtrs.f -------------------------------------------------------------------------------- /lapack/SRC/ctfsm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctfsm.f -------------------------------------------------------------------------------- /lapack/SRC/ctftri.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctftri.f -------------------------------------------------------------------------------- /lapack/SRC/ctfttp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctfttp.f -------------------------------------------------------------------------------- /lapack/SRC/ctfttr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctfttr.f -------------------------------------------------------------------------------- /lapack/SRC/ctgevc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctgevc.f -------------------------------------------------------------------------------- /lapack/SRC/ctgex2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctgex2.f -------------------------------------------------------------------------------- /lapack/SRC/ctgexc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctgexc.f -------------------------------------------------------------------------------- /lapack/SRC/ctgsen.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctgsen.f -------------------------------------------------------------------------------- /lapack/SRC/ctgsja.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctgsja.f -------------------------------------------------------------------------------- /lapack/SRC/ctgsna.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctgsna.f -------------------------------------------------------------------------------- /lapack/SRC/ctgsy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctgsy2.f -------------------------------------------------------------------------------- /lapack/SRC/ctgsyl.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctgsyl.f -------------------------------------------------------------------------------- /lapack/SRC/ctpcon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctpcon.f -------------------------------------------------------------------------------- /lapack/SRC/ctpmqrt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctpmqrt.f -------------------------------------------------------------------------------- /lapack/SRC/ctpqrt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctpqrt.f -------------------------------------------------------------------------------- /lapack/SRC/ctpqrt2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctpqrt2.f -------------------------------------------------------------------------------- /lapack/SRC/ctprfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctprfb.f -------------------------------------------------------------------------------- /lapack/SRC/ctprfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctprfs.f -------------------------------------------------------------------------------- /lapack/SRC/ctptri.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctptri.f -------------------------------------------------------------------------------- /lapack/SRC/ctptrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctptrs.f -------------------------------------------------------------------------------- /lapack/SRC/ctpttf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctpttf.f -------------------------------------------------------------------------------- /lapack/SRC/ctpttr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctpttr.f -------------------------------------------------------------------------------- /lapack/SRC/ctrcon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctrcon.f -------------------------------------------------------------------------------- /lapack/SRC/ctrevc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctrevc.f -------------------------------------------------------------------------------- /lapack/SRC/ctrexc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctrexc.f -------------------------------------------------------------------------------- /lapack/SRC/ctrrfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctrrfs.f -------------------------------------------------------------------------------- /lapack/SRC/ctrsen.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctrsen.f -------------------------------------------------------------------------------- /lapack/SRC/ctrsna.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctrsna.f -------------------------------------------------------------------------------- /lapack/SRC/ctrsyl.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctrsyl.f -------------------------------------------------------------------------------- /lapack/SRC/ctrti2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctrti2.f -------------------------------------------------------------------------------- /lapack/SRC/ctrtri.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctrtri.f -------------------------------------------------------------------------------- /lapack/SRC/ctrtrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctrtrs.f -------------------------------------------------------------------------------- /lapack/SRC/ctrttf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctrttf.f -------------------------------------------------------------------------------- /lapack/SRC/ctrttp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctrttp.f -------------------------------------------------------------------------------- /lapack/SRC/ctzrzf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ctzrzf.f -------------------------------------------------------------------------------- /lapack/SRC/cunbdb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunbdb.f -------------------------------------------------------------------------------- /lapack/SRC/cunbdb1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunbdb1.f -------------------------------------------------------------------------------- /lapack/SRC/cunbdb2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunbdb2.f -------------------------------------------------------------------------------- /lapack/SRC/cunbdb3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunbdb3.f -------------------------------------------------------------------------------- /lapack/SRC/cunbdb4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunbdb4.f -------------------------------------------------------------------------------- /lapack/SRC/cunbdb5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunbdb5.f -------------------------------------------------------------------------------- /lapack/SRC/cunbdb6.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunbdb6.f -------------------------------------------------------------------------------- /lapack/SRC/cuncsd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cuncsd.f -------------------------------------------------------------------------------- /lapack/SRC/cung2l.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cung2l.f -------------------------------------------------------------------------------- /lapack/SRC/cung2r.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cung2r.f -------------------------------------------------------------------------------- /lapack/SRC/cungbr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cungbr.f -------------------------------------------------------------------------------- /lapack/SRC/cunghr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunghr.f -------------------------------------------------------------------------------- /lapack/SRC/cungl2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cungl2.f -------------------------------------------------------------------------------- /lapack/SRC/cunglq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunglq.f -------------------------------------------------------------------------------- /lapack/SRC/cungql.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cungql.f -------------------------------------------------------------------------------- /lapack/SRC/cungqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cungqr.f -------------------------------------------------------------------------------- /lapack/SRC/cungr2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cungr2.f -------------------------------------------------------------------------------- /lapack/SRC/cungrq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cungrq.f -------------------------------------------------------------------------------- /lapack/SRC/cungtr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cungtr.f -------------------------------------------------------------------------------- /lapack/SRC/cunm22.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunm22.f -------------------------------------------------------------------------------- /lapack/SRC/cunm2l.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunm2l.f -------------------------------------------------------------------------------- /lapack/SRC/cunm2r.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunm2r.f -------------------------------------------------------------------------------- /lapack/SRC/cunmbr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunmbr.f -------------------------------------------------------------------------------- /lapack/SRC/cunmhr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunmhr.f -------------------------------------------------------------------------------- /lapack/SRC/cunml2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunml2.f -------------------------------------------------------------------------------- /lapack/SRC/cunmlq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunmlq.f -------------------------------------------------------------------------------- /lapack/SRC/cunmql.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunmql.f -------------------------------------------------------------------------------- /lapack/SRC/cunmqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunmqr.f -------------------------------------------------------------------------------- /lapack/SRC/cunmr2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunmr2.f -------------------------------------------------------------------------------- /lapack/SRC/cunmr3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunmr3.f -------------------------------------------------------------------------------- /lapack/SRC/cunmrq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunmrq.f -------------------------------------------------------------------------------- /lapack/SRC/cunmrz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunmrz.f -------------------------------------------------------------------------------- /lapack/SRC/cunmtr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cunmtr.f -------------------------------------------------------------------------------- /lapack/SRC/cupgtr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cupgtr.f -------------------------------------------------------------------------------- /lapack/SRC/cupmtr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/cupmtr.f -------------------------------------------------------------------------------- /lapack/SRC/dbbcsd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dbbcsd.f -------------------------------------------------------------------------------- /lapack/SRC/dbdsdc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dbdsdc.f -------------------------------------------------------------------------------- /lapack/SRC/dbdsqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dbdsqr.f -------------------------------------------------------------------------------- /lapack/SRC/dbdsvdx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dbdsvdx.f -------------------------------------------------------------------------------- /lapack/SRC/ddisna.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ddisna.f -------------------------------------------------------------------------------- /lapack/SRC/dgbbrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgbbrd.f -------------------------------------------------------------------------------- /lapack/SRC/dgbcon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgbcon.f -------------------------------------------------------------------------------- /lapack/SRC/dgbequ.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgbequ.f -------------------------------------------------------------------------------- /lapack/SRC/dgbequb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgbequb.f -------------------------------------------------------------------------------- /lapack/SRC/dgbrfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgbrfs.f -------------------------------------------------------------------------------- /lapack/SRC/dgbrfsx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgbrfsx.f -------------------------------------------------------------------------------- /lapack/SRC/dgbsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgbsv.f -------------------------------------------------------------------------------- /lapack/SRC/dgbsvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgbsvx.f -------------------------------------------------------------------------------- /lapack/SRC/dgbsvxx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgbsvxx.f -------------------------------------------------------------------------------- /lapack/SRC/dgbtf2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgbtf2.f -------------------------------------------------------------------------------- /lapack/SRC/dgbtrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgbtrf.f -------------------------------------------------------------------------------- /lapack/SRC/dgbtrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgbtrs.f -------------------------------------------------------------------------------- /lapack/SRC/dgebak.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgebak.f -------------------------------------------------------------------------------- /lapack/SRC/dgebal.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgebal.f -------------------------------------------------------------------------------- /lapack/SRC/dgebd2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgebd2.f -------------------------------------------------------------------------------- /lapack/SRC/dgebrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgebrd.f -------------------------------------------------------------------------------- /lapack/SRC/dgecon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgecon.f -------------------------------------------------------------------------------- /lapack/SRC/dgeequ.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgeequ.f -------------------------------------------------------------------------------- /lapack/SRC/dgeequb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgeequb.f -------------------------------------------------------------------------------- /lapack/SRC/dgees.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgees.f -------------------------------------------------------------------------------- /lapack/SRC/dgeesx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgeesx.f -------------------------------------------------------------------------------- /lapack/SRC/dgeev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgeev.f -------------------------------------------------------------------------------- /lapack/SRC/dgeevx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgeevx.f -------------------------------------------------------------------------------- /lapack/SRC/dgehd2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgehd2.f -------------------------------------------------------------------------------- /lapack/SRC/dgehrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgehrd.f -------------------------------------------------------------------------------- /lapack/SRC/dgejsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgejsv.f -------------------------------------------------------------------------------- /lapack/SRC/dgelq2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgelq2.f -------------------------------------------------------------------------------- /lapack/SRC/dgelqf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgelqf.f -------------------------------------------------------------------------------- /lapack/SRC/dgels.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgels.f -------------------------------------------------------------------------------- /lapack/SRC/dgelsd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgelsd.f -------------------------------------------------------------------------------- /lapack/SRC/dgelss.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgelss.f -------------------------------------------------------------------------------- /lapack/SRC/dgelsy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgelsy.f -------------------------------------------------------------------------------- /lapack/SRC/dgemqrt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgemqrt.f -------------------------------------------------------------------------------- /lapack/SRC/dgeql2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgeql2.f -------------------------------------------------------------------------------- /lapack/SRC/dgeqlf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgeqlf.f -------------------------------------------------------------------------------- /lapack/SRC/dgeqp3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgeqp3.f -------------------------------------------------------------------------------- /lapack/SRC/dgeqr2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgeqr2.f -------------------------------------------------------------------------------- /lapack/SRC/dgeqr2p.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgeqr2p.f -------------------------------------------------------------------------------- /lapack/SRC/dgeqrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgeqrf.f -------------------------------------------------------------------------------- /lapack/SRC/dgeqrfp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgeqrfp.f -------------------------------------------------------------------------------- /lapack/SRC/dgeqrt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgeqrt.f -------------------------------------------------------------------------------- /lapack/SRC/dgeqrt2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgeqrt2.f -------------------------------------------------------------------------------- /lapack/SRC/dgeqrt3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgeqrt3.f -------------------------------------------------------------------------------- /lapack/SRC/dgerfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgerfs.f -------------------------------------------------------------------------------- /lapack/SRC/dgerfsx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgerfsx.f -------------------------------------------------------------------------------- /lapack/SRC/dgerq2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgerq2.f -------------------------------------------------------------------------------- /lapack/SRC/dgerqf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgerqf.f -------------------------------------------------------------------------------- /lapack/SRC/dgesc2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgesc2.f -------------------------------------------------------------------------------- /lapack/SRC/dgesdd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgesdd.f -------------------------------------------------------------------------------- /lapack/SRC/dgesv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgesv.f -------------------------------------------------------------------------------- /lapack/SRC/dgesvd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgesvd.f -------------------------------------------------------------------------------- /lapack/SRC/dgesvdx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgesvdx.f -------------------------------------------------------------------------------- /lapack/SRC/dgesvj.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgesvj.f -------------------------------------------------------------------------------- /lapack/SRC/dgesvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgesvx.f -------------------------------------------------------------------------------- /lapack/SRC/dgesvxx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgesvxx.f -------------------------------------------------------------------------------- /lapack/SRC/dgetc2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgetc2.f -------------------------------------------------------------------------------- /lapack/SRC/dgetf2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgetf2.f -------------------------------------------------------------------------------- /lapack/SRC/dgetrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgetrf.f -------------------------------------------------------------------------------- /lapack/SRC/dgetrf2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgetrf2.f -------------------------------------------------------------------------------- /lapack/SRC/dgetri.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgetri.f -------------------------------------------------------------------------------- /lapack/SRC/dgetrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgetrs.f -------------------------------------------------------------------------------- /lapack/SRC/dggbak.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dggbak.f -------------------------------------------------------------------------------- /lapack/SRC/dggbal.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dggbal.f -------------------------------------------------------------------------------- /lapack/SRC/dgges.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgges.f -------------------------------------------------------------------------------- /lapack/SRC/dgges3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgges3.f -------------------------------------------------------------------------------- /lapack/SRC/dggesx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dggesx.f -------------------------------------------------------------------------------- /lapack/SRC/dggev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dggev.f -------------------------------------------------------------------------------- /lapack/SRC/dggev3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dggev3.f -------------------------------------------------------------------------------- /lapack/SRC/dggevx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dggevx.f -------------------------------------------------------------------------------- /lapack/SRC/dggglm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dggglm.f -------------------------------------------------------------------------------- /lapack/SRC/dgghd3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgghd3.f -------------------------------------------------------------------------------- /lapack/SRC/dgghrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgghrd.f -------------------------------------------------------------------------------- /lapack/SRC/dgglse.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgglse.f -------------------------------------------------------------------------------- /lapack/SRC/dggqrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dggqrf.f -------------------------------------------------------------------------------- /lapack/SRC/dggrqf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dggrqf.f -------------------------------------------------------------------------------- /lapack/SRC/dggsvd3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dggsvd3.f -------------------------------------------------------------------------------- /lapack/SRC/dggsvp3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dggsvp3.f -------------------------------------------------------------------------------- /lapack/SRC/dgsvj0.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgsvj0.f -------------------------------------------------------------------------------- /lapack/SRC/dgsvj1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgsvj1.f -------------------------------------------------------------------------------- /lapack/SRC/dgtcon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgtcon.f -------------------------------------------------------------------------------- /lapack/SRC/dgtrfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgtrfs.f -------------------------------------------------------------------------------- /lapack/SRC/dgtsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgtsv.f -------------------------------------------------------------------------------- /lapack/SRC/dgtsvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgtsvx.f -------------------------------------------------------------------------------- /lapack/SRC/dgttrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgttrf.f -------------------------------------------------------------------------------- /lapack/SRC/dgttrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgttrs.f -------------------------------------------------------------------------------- /lapack/SRC/dgtts2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dgtts2.f -------------------------------------------------------------------------------- /lapack/SRC/dhgeqz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dhgeqz.f -------------------------------------------------------------------------------- /lapack/SRC/dhsein.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dhsein.f -------------------------------------------------------------------------------- /lapack/SRC/dhseqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dhseqr.f -------------------------------------------------------------------------------- /lapack/SRC/disnan.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/disnan.f -------------------------------------------------------------------------------- /lapack/SRC/dlabad.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlabad.f -------------------------------------------------------------------------------- /lapack/SRC/dlabrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlabrd.f -------------------------------------------------------------------------------- /lapack/SRC/dlacn2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlacn2.f -------------------------------------------------------------------------------- /lapack/SRC/dlacon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlacon.f -------------------------------------------------------------------------------- /lapack/SRC/dlacpy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlacpy.f -------------------------------------------------------------------------------- /lapack/SRC/dladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dladiv.f -------------------------------------------------------------------------------- /lapack/SRC/dlae2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlae2.f -------------------------------------------------------------------------------- /lapack/SRC/dlaebz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaebz.f -------------------------------------------------------------------------------- /lapack/SRC/dlaed0.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaed0.f -------------------------------------------------------------------------------- /lapack/SRC/dlaed1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaed1.f -------------------------------------------------------------------------------- /lapack/SRC/dlaed2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaed2.f -------------------------------------------------------------------------------- /lapack/SRC/dlaed3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaed3.f -------------------------------------------------------------------------------- /lapack/SRC/dlaed4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaed4.f -------------------------------------------------------------------------------- /lapack/SRC/dlaed5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaed5.f -------------------------------------------------------------------------------- /lapack/SRC/dlaed6.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaed6.f -------------------------------------------------------------------------------- /lapack/SRC/dlaed7.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaed7.f -------------------------------------------------------------------------------- /lapack/SRC/dlaed8.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaed8.f -------------------------------------------------------------------------------- /lapack/SRC/dlaed9.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaed9.f -------------------------------------------------------------------------------- /lapack/SRC/dlaeda.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaeda.f -------------------------------------------------------------------------------- /lapack/SRC/dlaein.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaein.f -------------------------------------------------------------------------------- /lapack/SRC/dlaev2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaev2.f -------------------------------------------------------------------------------- /lapack/SRC/dlaexc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaexc.f -------------------------------------------------------------------------------- /lapack/SRC/dlag2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlag2.f -------------------------------------------------------------------------------- /lapack/SRC/dlag2s.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlag2s.f -------------------------------------------------------------------------------- /lapack/SRC/dlags2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlags2.f -------------------------------------------------------------------------------- /lapack/SRC/dlagtf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlagtf.f -------------------------------------------------------------------------------- /lapack/SRC/dlagtm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlagtm.f -------------------------------------------------------------------------------- /lapack/SRC/dlagts.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlagts.f -------------------------------------------------------------------------------- /lapack/SRC/dlagv2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlagv2.f -------------------------------------------------------------------------------- /lapack/SRC/dlahqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlahqr.f -------------------------------------------------------------------------------- /lapack/SRC/dlahr2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlahr2.f -------------------------------------------------------------------------------- /lapack/SRC/dlaic1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaic1.f -------------------------------------------------------------------------------- /lapack/SRC/dlaln2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaln2.f -------------------------------------------------------------------------------- /lapack/SRC/dlals0.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlals0.f -------------------------------------------------------------------------------- /lapack/SRC/dlalsa.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlalsa.f -------------------------------------------------------------------------------- /lapack/SRC/dlalsd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlalsd.f -------------------------------------------------------------------------------- /lapack/SRC/dlamrg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlamrg.f -------------------------------------------------------------------------------- /lapack/SRC/dlaneg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaneg.f -------------------------------------------------------------------------------- /lapack/SRC/dlangb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlangb.f -------------------------------------------------------------------------------- /lapack/SRC/dlange.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlange.f -------------------------------------------------------------------------------- /lapack/SRC/dlangt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlangt.f -------------------------------------------------------------------------------- /lapack/SRC/dlanhs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlanhs.f -------------------------------------------------------------------------------- /lapack/SRC/dlansb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlansb.f -------------------------------------------------------------------------------- /lapack/SRC/dlansf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlansf.f -------------------------------------------------------------------------------- /lapack/SRC/dlansp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlansp.f -------------------------------------------------------------------------------- /lapack/SRC/dlanst.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlanst.f -------------------------------------------------------------------------------- /lapack/SRC/dlansy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlansy.f -------------------------------------------------------------------------------- /lapack/SRC/dlantb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlantb.f -------------------------------------------------------------------------------- /lapack/SRC/dlantp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlantp.f -------------------------------------------------------------------------------- /lapack/SRC/dlantr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlantr.f -------------------------------------------------------------------------------- /lapack/SRC/dlanv2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlanv2.f -------------------------------------------------------------------------------- /lapack/SRC/dlapll.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlapll.f -------------------------------------------------------------------------------- /lapack/SRC/dlapmr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlapmr.f -------------------------------------------------------------------------------- /lapack/SRC/dlapmt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlapmt.f -------------------------------------------------------------------------------- /lapack/SRC/dlapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlapy2.f -------------------------------------------------------------------------------- /lapack/SRC/dlapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlapy3.f -------------------------------------------------------------------------------- /lapack/SRC/dlaqgb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaqgb.f -------------------------------------------------------------------------------- /lapack/SRC/dlaqge.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaqge.f -------------------------------------------------------------------------------- /lapack/SRC/dlaqp2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaqp2.f -------------------------------------------------------------------------------- /lapack/SRC/dlaqps.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaqps.f -------------------------------------------------------------------------------- /lapack/SRC/dlaqr0.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaqr0.f -------------------------------------------------------------------------------- /lapack/SRC/dlaqr1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaqr1.f -------------------------------------------------------------------------------- /lapack/SRC/dlaqr2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaqr2.f -------------------------------------------------------------------------------- /lapack/SRC/dlaqr3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaqr3.f -------------------------------------------------------------------------------- /lapack/SRC/dlaqr4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaqr4.f -------------------------------------------------------------------------------- /lapack/SRC/dlaqr5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaqr5.f -------------------------------------------------------------------------------- /lapack/SRC/dlaqsb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaqsb.f -------------------------------------------------------------------------------- /lapack/SRC/dlaqsp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaqsp.f -------------------------------------------------------------------------------- /lapack/SRC/dlaqsy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaqsy.f -------------------------------------------------------------------------------- /lapack/SRC/dlaqtr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaqtr.f -------------------------------------------------------------------------------- /lapack/SRC/dlar1v.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlar1v.f -------------------------------------------------------------------------------- /lapack/SRC/dlar2v.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlar2v.f -------------------------------------------------------------------------------- /lapack/SRC/dlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarf.f -------------------------------------------------------------------------------- /lapack/SRC/dlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarfb.f -------------------------------------------------------------------------------- /lapack/SRC/dlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarfg.f -------------------------------------------------------------------------------- /lapack/SRC/dlarfgp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarfgp.f -------------------------------------------------------------------------------- /lapack/SRC/dlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarft.f -------------------------------------------------------------------------------- /lapack/SRC/dlarfx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarfx.f -------------------------------------------------------------------------------- /lapack/SRC/dlargv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlargv.f -------------------------------------------------------------------------------- /lapack/SRC/dlarnv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarnv.f -------------------------------------------------------------------------------- /lapack/SRC/dlarra.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarra.f -------------------------------------------------------------------------------- /lapack/SRC/dlarrb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarrb.f -------------------------------------------------------------------------------- /lapack/SRC/dlarrc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarrc.f -------------------------------------------------------------------------------- /lapack/SRC/dlarrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarrd.f -------------------------------------------------------------------------------- /lapack/SRC/dlarre.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarre.f -------------------------------------------------------------------------------- /lapack/SRC/dlarrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarrf.f -------------------------------------------------------------------------------- /lapack/SRC/dlarrj.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarrj.f -------------------------------------------------------------------------------- /lapack/SRC/dlarrk.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarrk.f -------------------------------------------------------------------------------- /lapack/SRC/dlarrr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarrr.f -------------------------------------------------------------------------------- /lapack/SRC/dlarrv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarrv.f -------------------------------------------------------------------------------- /lapack/SRC/dlartg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlartg.f -------------------------------------------------------------------------------- /lapack/SRC/dlartgp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlartgp.f -------------------------------------------------------------------------------- /lapack/SRC/dlartgs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlartgs.f -------------------------------------------------------------------------------- /lapack/SRC/dlartv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlartv.f -------------------------------------------------------------------------------- /lapack/SRC/dlaruv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaruv.f -------------------------------------------------------------------------------- /lapack/SRC/dlarz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarz.f -------------------------------------------------------------------------------- /lapack/SRC/dlarzb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarzb.f -------------------------------------------------------------------------------- /lapack/SRC/dlarzt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlarzt.f -------------------------------------------------------------------------------- /lapack/SRC/dlas2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlas2.f -------------------------------------------------------------------------------- /lapack/SRC/dlascl.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlascl.f -------------------------------------------------------------------------------- /lapack/SRC/dlascl2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlascl2.f -------------------------------------------------------------------------------- /lapack/SRC/dlasd0.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasd0.f -------------------------------------------------------------------------------- /lapack/SRC/dlasd1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasd1.f -------------------------------------------------------------------------------- /lapack/SRC/dlasd2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasd2.f -------------------------------------------------------------------------------- /lapack/SRC/dlasd3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasd3.f -------------------------------------------------------------------------------- /lapack/SRC/dlasd4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasd4.f -------------------------------------------------------------------------------- /lapack/SRC/dlasd5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasd5.f -------------------------------------------------------------------------------- /lapack/SRC/dlasd6.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasd6.f -------------------------------------------------------------------------------- /lapack/SRC/dlasd7.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasd7.f -------------------------------------------------------------------------------- /lapack/SRC/dlasd8.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasd8.f -------------------------------------------------------------------------------- /lapack/SRC/dlasda.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasda.f -------------------------------------------------------------------------------- /lapack/SRC/dlasdq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasdq.f -------------------------------------------------------------------------------- /lapack/SRC/dlasdt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasdt.f -------------------------------------------------------------------------------- /lapack/SRC/dlaset.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaset.f -------------------------------------------------------------------------------- /lapack/SRC/dlasq1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasq1.f -------------------------------------------------------------------------------- /lapack/SRC/dlasq2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasq2.f -------------------------------------------------------------------------------- /lapack/SRC/dlasq3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasq3.f -------------------------------------------------------------------------------- /lapack/SRC/dlasq4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasq4.f -------------------------------------------------------------------------------- /lapack/SRC/dlasq5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasq5.f -------------------------------------------------------------------------------- /lapack/SRC/dlasq6.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasq6.f -------------------------------------------------------------------------------- /lapack/SRC/dlasr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasr.f -------------------------------------------------------------------------------- /lapack/SRC/dlasrt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasrt.f -------------------------------------------------------------------------------- /lapack/SRC/dlassq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlassq.f -------------------------------------------------------------------------------- /lapack/SRC/dlasv2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasv2.f -------------------------------------------------------------------------------- /lapack/SRC/dlaswp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlaswp.f -------------------------------------------------------------------------------- /lapack/SRC/dlasy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasy2.f -------------------------------------------------------------------------------- /lapack/SRC/dlasyf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlasyf.f -------------------------------------------------------------------------------- /lapack/SRC/dlat2s.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlat2s.f -------------------------------------------------------------------------------- /lapack/SRC/dlatbs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlatbs.f -------------------------------------------------------------------------------- /lapack/SRC/dlatdf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlatdf.f -------------------------------------------------------------------------------- /lapack/SRC/dlatps.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlatps.f -------------------------------------------------------------------------------- /lapack/SRC/dlatrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlatrd.f -------------------------------------------------------------------------------- /lapack/SRC/dlatrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlatrs.f -------------------------------------------------------------------------------- /lapack/SRC/dlatrz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlatrz.f -------------------------------------------------------------------------------- /lapack/SRC/dlauu2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlauu2.f -------------------------------------------------------------------------------- /lapack/SRC/dlauum.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dlauum.f -------------------------------------------------------------------------------- /lapack/SRC/dopgtr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dopgtr.f -------------------------------------------------------------------------------- /lapack/SRC/dopmtr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dopmtr.f -------------------------------------------------------------------------------- /lapack/SRC/dorbdb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorbdb.f -------------------------------------------------------------------------------- /lapack/SRC/dorbdb1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorbdb1.f -------------------------------------------------------------------------------- /lapack/SRC/dorbdb2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorbdb2.f -------------------------------------------------------------------------------- /lapack/SRC/dorbdb3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorbdb3.f -------------------------------------------------------------------------------- /lapack/SRC/dorbdb4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorbdb4.f -------------------------------------------------------------------------------- /lapack/SRC/dorbdb5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorbdb5.f -------------------------------------------------------------------------------- /lapack/SRC/dorbdb6.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorbdb6.f -------------------------------------------------------------------------------- /lapack/SRC/dorcsd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorcsd.f -------------------------------------------------------------------------------- /lapack/SRC/dorg2l.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorg2l.f -------------------------------------------------------------------------------- /lapack/SRC/dorg2r.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorg2r.f -------------------------------------------------------------------------------- /lapack/SRC/dorgbr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorgbr.f -------------------------------------------------------------------------------- /lapack/SRC/dorghr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorghr.f -------------------------------------------------------------------------------- /lapack/SRC/dorgl2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorgl2.f -------------------------------------------------------------------------------- /lapack/SRC/dorglq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorglq.f -------------------------------------------------------------------------------- /lapack/SRC/dorgql.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorgql.f -------------------------------------------------------------------------------- /lapack/SRC/dorgqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorgqr.f -------------------------------------------------------------------------------- /lapack/SRC/dorgr2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorgr2.f -------------------------------------------------------------------------------- /lapack/SRC/dorgrq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorgrq.f -------------------------------------------------------------------------------- /lapack/SRC/dorgtr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorgtr.f -------------------------------------------------------------------------------- /lapack/SRC/dorm22.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorm22.f -------------------------------------------------------------------------------- /lapack/SRC/dorm2l.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorm2l.f -------------------------------------------------------------------------------- /lapack/SRC/dorm2r.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorm2r.f -------------------------------------------------------------------------------- /lapack/SRC/dormbr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dormbr.f -------------------------------------------------------------------------------- /lapack/SRC/dormhr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dormhr.f -------------------------------------------------------------------------------- /lapack/SRC/dorml2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dorml2.f -------------------------------------------------------------------------------- /lapack/SRC/dormlq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dormlq.f -------------------------------------------------------------------------------- /lapack/SRC/dormql.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dormql.f -------------------------------------------------------------------------------- /lapack/SRC/dormqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dormqr.f -------------------------------------------------------------------------------- /lapack/SRC/dormr2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dormr2.f -------------------------------------------------------------------------------- /lapack/SRC/dormr3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dormr3.f -------------------------------------------------------------------------------- /lapack/SRC/dormrq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dormrq.f -------------------------------------------------------------------------------- /lapack/SRC/dormrz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dormrz.f -------------------------------------------------------------------------------- /lapack/SRC/dormtr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dormtr.f -------------------------------------------------------------------------------- /lapack/SRC/dpbcon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dpbcon.f -------------------------------------------------------------------------------- /lapack/SRC/dpbequ.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dpbequ.f -------------------------------------------------------------------------------- /lapack/SRC/dpbrfs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dpbrfs.f -------------------------------------------------------------------------------- /lapack/SRC/dpbstf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dpbstf.f -------------------------------------------------------------------------------- /lapack/SRC/dpbsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dpbsv.f -------------------------------------------------------------------------------- /lapack/SRC/dpbsvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dpbsvx.f -------------------------------------------------------------------------------- /lapack/SRC/dpbtf2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dpbtf2.f -------------------------------------------------------------------------------- /lapack/SRC/dpbtrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dpbtrf.f -------------------------------------------------------------------------------- /lapack/SRC/dpbtrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dpbtrs.f -------------------------------------------------------------------------------- /lapack/SRC/dpftrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dpftrf.f -------------------------------------------------------------------------------- /lapack/SRC/dpftri.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dpftri.f -------------------------------------------------------------------------------- /lapack/SRC/dpftrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dpftrs.f -------------------------------------------------------------------------------- /lapack/SRC/dpocon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dpocon.f -------------------------------------------------------------------------------- /lapack/SRC/dposv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dposv.f -------------------------------------------------------------------------------- /lapack/SRC/dppsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dppsv.f -------------------------------------------------------------------------------- /lapack/SRC/dptsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dptsv.f -------------------------------------------------------------------------------- /lapack/SRC/drscl.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/drscl.f -------------------------------------------------------------------------------- /lapack/SRC/dsbev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dsbev.f -------------------------------------------------------------------------------- /lapack/SRC/dsbgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dsbgv.f -------------------------------------------------------------------------------- /lapack/SRC/dsfrk.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dsfrk.f -------------------------------------------------------------------------------- /lapack/SRC/dspev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dspev.f -------------------------------------------------------------------------------- /lapack/SRC/dspgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dspgv.f -------------------------------------------------------------------------------- /lapack/SRC/dspsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dspsv.f -------------------------------------------------------------------------------- /lapack/SRC/dstev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dstev.f -------------------------------------------------------------------------------- /lapack/SRC/dsyev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dsyev.f -------------------------------------------------------------------------------- /lapack/SRC/dsygv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dsygv.f -------------------------------------------------------------------------------- /lapack/SRC/dsysv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dsysv.f -------------------------------------------------------------------------------- /lapack/SRC/dtfsm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/dtfsm.f -------------------------------------------------------------------------------- /lapack/SRC/sgbsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/sgbsv.f -------------------------------------------------------------------------------- /lapack/SRC/sgees.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/sgees.f -------------------------------------------------------------------------------- /lapack/SRC/sgeev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/sgeev.f -------------------------------------------------------------------------------- /lapack/SRC/sgels.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/sgels.f -------------------------------------------------------------------------------- /lapack/SRC/sgesv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/sgesv.f -------------------------------------------------------------------------------- /lapack/SRC/sgges.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/sgges.f -------------------------------------------------------------------------------- /lapack/SRC/sggev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/sggev.f -------------------------------------------------------------------------------- /lapack/SRC/sgtsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/sgtsv.f -------------------------------------------------------------------------------- /lapack/SRC/slae2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/slae2.f -------------------------------------------------------------------------------- /lapack/SRC/slag2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/slag2.f -------------------------------------------------------------------------------- /lapack/SRC/slarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/slarf.f -------------------------------------------------------------------------------- /lapack/SRC/slarz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/slarz.f -------------------------------------------------------------------------------- /lapack/SRC/slas2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/slas2.f -------------------------------------------------------------------------------- /lapack/SRC/slasr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/slasr.f -------------------------------------------------------------------------------- /lapack/SRC/spbsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/spbsv.f -------------------------------------------------------------------------------- /lapack/SRC/sposv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/sposv.f -------------------------------------------------------------------------------- /lapack/SRC/sppsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/sppsv.f -------------------------------------------------------------------------------- /lapack/SRC/sptsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/sptsv.f -------------------------------------------------------------------------------- /lapack/SRC/srscl.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/srscl.f -------------------------------------------------------------------------------- /lapack/SRC/ssbev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ssbev.f -------------------------------------------------------------------------------- /lapack/SRC/ssbgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ssbgv.f -------------------------------------------------------------------------------- /lapack/SRC/ssfrk.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ssfrk.f -------------------------------------------------------------------------------- /lapack/SRC/sspev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/sspev.f -------------------------------------------------------------------------------- /lapack/SRC/sspgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/sspgv.f -------------------------------------------------------------------------------- /lapack/SRC/sspsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/sspsv.f -------------------------------------------------------------------------------- /lapack/SRC/sstev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/sstev.f -------------------------------------------------------------------------------- /lapack/SRC/ssyev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ssyev.f -------------------------------------------------------------------------------- /lapack/SRC/ssygv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ssygv.f -------------------------------------------------------------------------------- /lapack/SRC/ssysv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ssysv.f -------------------------------------------------------------------------------- /lapack/SRC/stfsm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/stfsm.f -------------------------------------------------------------------------------- /lapack/SRC/zgbsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zgbsv.f -------------------------------------------------------------------------------- /lapack/SRC/zgees.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zgees.f -------------------------------------------------------------------------------- /lapack/SRC/zgeev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zgeev.f -------------------------------------------------------------------------------- /lapack/SRC/zgels.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zgels.f -------------------------------------------------------------------------------- /lapack/SRC/zgesv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zgesv.f -------------------------------------------------------------------------------- /lapack/SRC/zgges.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zgges.f -------------------------------------------------------------------------------- /lapack/SRC/zggev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zggev.f -------------------------------------------------------------------------------- /lapack/SRC/zgtsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zgtsv.f -------------------------------------------------------------------------------- /lapack/SRC/zhbev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zhbev.f -------------------------------------------------------------------------------- /lapack/SRC/zhbgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zhbgv.f -------------------------------------------------------------------------------- /lapack/SRC/zheev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zheev.f -------------------------------------------------------------------------------- /lapack/SRC/zhegv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zhegv.f -------------------------------------------------------------------------------- /lapack/SRC/zhesv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zhesv.f -------------------------------------------------------------------------------- /lapack/SRC/zhfrk.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zhfrk.f -------------------------------------------------------------------------------- /lapack/SRC/zhpev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zhpev.f -------------------------------------------------------------------------------- /lapack/SRC/zhpgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zhpgv.f -------------------------------------------------------------------------------- /lapack/SRC/zhpsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zhpsv.f -------------------------------------------------------------------------------- /lapack/SRC/zlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zlarf.f -------------------------------------------------------------------------------- /lapack/SRC/zlarz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zlarz.f -------------------------------------------------------------------------------- /lapack/SRC/zlasr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zlasr.f -------------------------------------------------------------------------------- /lapack/SRC/zpbsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zpbsv.f -------------------------------------------------------------------------------- /lapack/SRC/zposv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zposv.f -------------------------------------------------------------------------------- /lapack/SRC/zppsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zppsv.f -------------------------------------------------------------------------------- /lapack/SRC/zptsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zptsv.f -------------------------------------------------------------------------------- /lapack/SRC/zrot.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zrot.f -------------------------------------------------------------------------------- /lapack/SRC/zspmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zspmv.f -------------------------------------------------------------------------------- /lapack/SRC/zspr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zspr.f -------------------------------------------------------------------------------- /lapack/SRC/zspsv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zspsv.f -------------------------------------------------------------------------------- /lapack/SRC/zsymv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zsymv.f -------------------------------------------------------------------------------- /lapack/SRC/zsyr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zsyr.f -------------------------------------------------------------------------------- /lapack/SRC/zsysv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/zsysv.f -------------------------------------------------------------------------------- /lapack/SRC/ztfsm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/Math/HEAD/lapack/SRC/ztfsm.f --------------------------------------------------------------------------------