├── .azuredevops └── rocm-ci.yml ├── .clang-format ├── .githooks ├── install └── pre-commit ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── dependabot.yml ├── .gitignore ├── .jenkins ├── common.groovy ├── debug.groovy ├── multigpu.groovy ├── staticanalysis.groovy └── staticlibrary.groovy ├── .readthedocs.yaml ├── CHANGELOG.md ├── CMakeLists.txt ├── CppCheckSuppressions.txt ├── LICENSE.md ├── README.md ├── clients ├── CMakeLists.txt ├── bench │ ├── CMakeLists.txt │ ├── bench.cpp │ └── bench.h ├── cmake │ ├── FindFFTW.cmake │ └── build-options.cmake ├── hipfft_params.h ├── samples │ ├── CMakeLists.txt │ ├── hipfft_1d_d2z.cpp │ ├── hipfft_1d_z2z.cpp │ ├── hipfft_2d_d2z.cpp │ ├── hipfft_2d_z2z.cpp │ ├── hipfft_3d_d2z.cpp │ ├── hipfft_3d_z2z.cpp │ ├── hipfft_callback.cpp │ ├── hipfft_multigpu_2d_z2z.cpp │ ├── hipfft_planmany_2d_r2c.cpp │ ├── hipfft_planmany_2d_z2z.cpp │ └── hipfft_setworkarea.cpp └── tests │ ├── CMakeLists.txt │ ├── accuracy_test_1D.cpp │ ├── accuracy_test_2D.cpp │ ├── accuracy_test_3D.cpp │ ├── accuracy_test_callback.cpp │ ├── gtest_main.cpp │ ├── hipfft_accuracy_test.cpp │ ├── hipfft_accuracy_test.h │ ├── hipfft_mpi_worker.cpp │ ├── hipfft_test_params.h │ ├── multi_device_test.cpp │ └── simple_test.cpp ├── cmake ├── dependencies.cmake ├── get-cli-arguments.cmake ├── package-functions.cmake └── verbose.cmake ├── deps ├── CMakeLists.txt ├── external-boost.cmake └── external-gtest.cmake ├── docs ├── .gitignore ├── conceptual │ └── overview.rst ├── conf.py ├── doxygen │ └── Doxyfile ├── index.rst ├── install │ └── building-installing-hipfft.rst ├── license.md ├── reference │ └── fft-api-usage.rst └── sphinx │ ├── _toc.yml.in │ ├── requirements.in │ └── requirements.txt ├── library ├── CMakeLists.txt ├── include │ └── hipfft │ │ ├── hipfft-version.h.in │ │ ├── hipfft.h │ │ ├── hipfftMp.h │ │ ├── hipfftXt.h │ │ └── hiplibxt.h └── src │ ├── CMakeLists.txt │ ├── amd_detail │ └── hipfft.cpp │ ├── hipfft-config.cmake.in │ └── nvidia_detail │ └── hipfft.cpp ├── rmake.py ├── rtest.xml ├── shared ├── CLI11.hpp ├── accuracy_test.h ├── arithmetic.h ├── array_predicate.h ├── array_validator.cpp ├── array_validator.h ├── client_except.h ├── concurrency.h ├── data_gen_device.h ├── data_gen_host.h ├── device_properties.h ├── enum_to_string.h ├── environment.h ├── fft_hash.h ├── fft_params.h ├── fftw_transform.h ├── gpubuf.h ├── hip_object_wrapper.h ├── hipfft_brick.h ├── hostbuf.h ├── increment.h ├── index_partition_omp.h ├── mpi_worker.h ├── params_gen.h ├── precision_type.h ├── printbuffer.h ├── ptrdiff.h ├── rocfft_accuracy_test.h ├── rocfft_against_fftw.h ├── rocfft_complex.h ├── rocfft_hip.h ├── rocfft_params.h ├── subprocess.h ├── sys_mem.h ├── test_params.h └── work_queue.h ├── toolchain-linux.cmake └── toolchain-windows.cmake /.azuredevops/rocm-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/.azuredevops/rocm-ci.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/.clang-format -------------------------------------------------------------------------------- /.githooks/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/.githooks/install -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/.gitignore -------------------------------------------------------------------------------- /.jenkins/common.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/.jenkins/common.groovy -------------------------------------------------------------------------------- /.jenkins/debug.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/.jenkins/debug.groovy -------------------------------------------------------------------------------- /.jenkins/multigpu.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/.jenkins/multigpu.groovy -------------------------------------------------------------------------------- /.jenkins/staticanalysis.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/.jenkins/staticanalysis.groovy -------------------------------------------------------------------------------- /.jenkins/staticlibrary.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/.jenkins/staticlibrary.groovy -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CppCheckSuppressions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/CppCheckSuppressions.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/README.md -------------------------------------------------------------------------------- /clients/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/CMakeLists.txt -------------------------------------------------------------------------------- /clients/bench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/bench/CMakeLists.txt -------------------------------------------------------------------------------- /clients/bench/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/bench/bench.cpp -------------------------------------------------------------------------------- /clients/bench/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/bench/bench.h -------------------------------------------------------------------------------- /clients/cmake/FindFFTW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/cmake/FindFFTW.cmake -------------------------------------------------------------------------------- /clients/cmake/build-options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/cmake/build-options.cmake -------------------------------------------------------------------------------- /clients/hipfft_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/hipfft_params.h -------------------------------------------------------------------------------- /clients/samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/samples/CMakeLists.txt -------------------------------------------------------------------------------- /clients/samples/hipfft_1d_d2z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/samples/hipfft_1d_d2z.cpp -------------------------------------------------------------------------------- /clients/samples/hipfft_1d_z2z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/samples/hipfft_1d_z2z.cpp -------------------------------------------------------------------------------- /clients/samples/hipfft_2d_d2z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/samples/hipfft_2d_d2z.cpp -------------------------------------------------------------------------------- /clients/samples/hipfft_2d_z2z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/samples/hipfft_2d_z2z.cpp -------------------------------------------------------------------------------- /clients/samples/hipfft_3d_d2z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/samples/hipfft_3d_d2z.cpp -------------------------------------------------------------------------------- /clients/samples/hipfft_3d_z2z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/samples/hipfft_3d_z2z.cpp -------------------------------------------------------------------------------- /clients/samples/hipfft_callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/samples/hipfft_callback.cpp -------------------------------------------------------------------------------- /clients/samples/hipfft_multigpu_2d_z2z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/samples/hipfft_multigpu_2d_z2z.cpp -------------------------------------------------------------------------------- /clients/samples/hipfft_planmany_2d_r2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/samples/hipfft_planmany_2d_r2c.cpp -------------------------------------------------------------------------------- /clients/samples/hipfft_planmany_2d_z2z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/samples/hipfft_planmany_2d_z2z.cpp -------------------------------------------------------------------------------- /clients/samples/hipfft_setworkarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/samples/hipfft_setworkarea.cpp -------------------------------------------------------------------------------- /clients/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/tests/CMakeLists.txt -------------------------------------------------------------------------------- /clients/tests/accuracy_test_1D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/tests/accuracy_test_1D.cpp -------------------------------------------------------------------------------- /clients/tests/accuracy_test_2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/tests/accuracy_test_2D.cpp -------------------------------------------------------------------------------- /clients/tests/accuracy_test_3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/tests/accuracy_test_3D.cpp -------------------------------------------------------------------------------- /clients/tests/accuracy_test_callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/tests/accuracy_test_callback.cpp -------------------------------------------------------------------------------- /clients/tests/gtest_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/tests/gtest_main.cpp -------------------------------------------------------------------------------- /clients/tests/hipfft_accuracy_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/tests/hipfft_accuracy_test.cpp -------------------------------------------------------------------------------- /clients/tests/hipfft_accuracy_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/tests/hipfft_accuracy_test.h -------------------------------------------------------------------------------- /clients/tests/hipfft_mpi_worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/tests/hipfft_mpi_worker.cpp -------------------------------------------------------------------------------- /clients/tests/hipfft_test_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/tests/hipfft_test_params.h -------------------------------------------------------------------------------- /clients/tests/multi_device_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/tests/multi_device_test.cpp -------------------------------------------------------------------------------- /clients/tests/simple_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/clients/tests/simple_test.cpp -------------------------------------------------------------------------------- /cmake/dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/cmake/dependencies.cmake -------------------------------------------------------------------------------- /cmake/get-cli-arguments.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/cmake/get-cli-arguments.cmake -------------------------------------------------------------------------------- /cmake/package-functions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/cmake/package-functions.cmake -------------------------------------------------------------------------------- /cmake/verbose.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/cmake/verbose.cmake -------------------------------------------------------------------------------- /deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/deps/CMakeLists.txt -------------------------------------------------------------------------------- /deps/external-boost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/deps/external-boost.cmake -------------------------------------------------------------------------------- /deps/external-gtest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/deps/external-gtest.cmake -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/conceptual/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/docs/conceptual/overview.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/docs/doxygen/Doxyfile -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install/building-installing-hipfft.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/docs/install/building-installing-hipfft.rst -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/docs/license.md -------------------------------------------------------------------------------- /docs/reference/fft-api-usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/docs/reference/fft-api-usage.rst -------------------------------------------------------------------------------- /docs/sphinx/_toc.yml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/docs/sphinx/_toc.yml.in -------------------------------------------------------------------------------- /docs/sphinx/requirements.in: -------------------------------------------------------------------------------- 1 | rocm-docs-core==1.17.0 2 | -------------------------------------------------------------------------------- /docs/sphinx/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/docs/sphinx/requirements.txt -------------------------------------------------------------------------------- /library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/library/CMakeLists.txt -------------------------------------------------------------------------------- /library/include/hipfft/hipfft-version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/library/include/hipfft/hipfft-version.h.in -------------------------------------------------------------------------------- /library/include/hipfft/hipfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/library/include/hipfft/hipfft.h -------------------------------------------------------------------------------- /library/include/hipfft/hipfftMp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/library/include/hipfft/hipfftMp.h -------------------------------------------------------------------------------- /library/include/hipfft/hipfftXt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/library/include/hipfft/hipfftXt.h -------------------------------------------------------------------------------- /library/include/hipfft/hiplibxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/library/include/hipfft/hiplibxt.h -------------------------------------------------------------------------------- /library/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/library/src/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/amd_detail/hipfft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/library/src/amd_detail/hipfft.cpp -------------------------------------------------------------------------------- /library/src/hipfft-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/library/src/hipfft-config.cmake.in -------------------------------------------------------------------------------- /library/src/nvidia_detail/hipfft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/library/src/nvidia_detail/hipfft.cpp -------------------------------------------------------------------------------- /rmake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/rmake.py -------------------------------------------------------------------------------- /rtest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/rtest.xml -------------------------------------------------------------------------------- /shared/CLI11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/CLI11.hpp -------------------------------------------------------------------------------- /shared/accuracy_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/accuracy_test.h -------------------------------------------------------------------------------- /shared/arithmetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/arithmetic.h -------------------------------------------------------------------------------- /shared/array_predicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/array_predicate.h -------------------------------------------------------------------------------- /shared/array_validator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/array_validator.cpp -------------------------------------------------------------------------------- /shared/array_validator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/array_validator.h -------------------------------------------------------------------------------- /shared/client_except.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/client_except.h -------------------------------------------------------------------------------- /shared/concurrency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/concurrency.h -------------------------------------------------------------------------------- /shared/data_gen_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/data_gen_device.h -------------------------------------------------------------------------------- /shared/data_gen_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/data_gen_host.h -------------------------------------------------------------------------------- /shared/device_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/device_properties.h -------------------------------------------------------------------------------- /shared/enum_to_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/enum_to_string.h -------------------------------------------------------------------------------- /shared/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/environment.h -------------------------------------------------------------------------------- /shared/fft_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/fft_hash.h -------------------------------------------------------------------------------- /shared/fft_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/fft_params.h -------------------------------------------------------------------------------- /shared/fftw_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/fftw_transform.h -------------------------------------------------------------------------------- /shared/gpubuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/gpubuf.h -------------------------------------------------------------------------------- /shared/hip_object_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/hip_object_wrapper.h -------------------------------------------------------------------------------- /shared/hipfft_brick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/hipfft_brick.h -------------------------------------------------------------------------------- /shared/hostbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/hostbuf.h -------------------------------------------------------------------------------- /shared/increment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/increment.h -------------------------------------------------------------------------------- /shared/index_partition_omp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/index_partition_omp.h -------------------------------------------------------------------------------- /shared/mpi_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/mpi_worker.h -------------------------------------------------------------------------------- /shared/params_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/params_gen.h -------------------------------------------------------------------------------- /shared/precision_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/precision_type.h -------------------------------------------------------------------------------- /shared/printbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/printbuffer.h -------------------------------------------------------------------------------- /shared/ptrdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/ptrdiff.h -------------------------------------------------------------------------------- /shared/rocfft_accuracy_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/rocfft_accuracy_test.h -------------------------------------------------------------------------------- /shared/rocfft_against_fftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/rocfft_against_fftw.h -------------------------------------------------------------------------------- /shared/rocfft_complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/rocfft_complex.h -------------------------------------------------------------------------------- /shared/rocfft_hip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/rocfft_hip.h -------------------------------------------------------------------------------- /shared/rocfft_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/rocfft_params.h -------------------------------------------------------------------------------- /shared/subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/subprocess.h -------------------------------------------------------------------------------- /shared/sys_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/sys_mem.h -------------------------------------------------------------------------------- /shared/test_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/test_params.h -------------------------------------------------------------------------------- /shared/work_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/shared/work_queue.h -------------------------------------------------------------------------------- /toolchain-linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/toolchain-linux.cmake -------------------------------------------------------------------------------- /toolchain-windows.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipFFT/HEAD/toolchain-windows.cmake --------------------------------------------------------------------------------