├── .gitignore ├── 1d-r.cpp ├── 1d.cpp ├── 2d.cpp ├── 3d-r.cpp ├── 3d.cpp ├── Makefile ├── README.md ├── plan1d.cpp ├── preleminary.py └── transpose.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-gemmi/benchmarking-fft/HEAD/.gitignore -------------------------------------------------------------------------------- /1d-r.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-gemmi/benchmarking-fft/HEAD/1d-r.cpp -------------------------------------------------------------------------------- /1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-gemmi/benchmarking-fft/HEAD/1d.cpp -------------------------------------------------------------------------------- /2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-gemmi/benchmarking-fft/HEAD/2d.cpp -------------------------------------------------------------------------------- /3d-r.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-gemmi/benchmarking-fft/HEAD/3d-r.cpp -------------------------------------------------------------------------------- /3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-gemmi/benchmarking-fft/HEAD/3d.cpp -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-gemmi/benchmarking-fft/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-gemmi/benchmarking-fft/HEAD/README.md -------------------------------------------------------------------------------- /plan1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-gemmi/benchmarking-fft/HEAD/plan1d.cpp -------------------------------------------------------------------------------- /preleminary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-gemmi/benchmarking-fft/HEAD/preleminary.py -------------------------------------------------------------------------------- /transpose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-gemmi/benchmarking-fft/HEAD/transpose.cpp --------------------------------------------------------------------------------