Quick Installation Guide¶
The cuFFTDx library is distributed as a part of the MathDx package. To download the most recent release of the MathDx package including cuFFTDx go to the https://developer.nvidia.com/mathdx website.
Note
MathDx package also includes the cuBLASDx library providing selected linear algebra functions like General Matrix Multiplication (GEMM). Both libraries are designed to work together. When using multiple device extensions libraries in a single project they should all come from the same MathDx release.
cuFFTDx In Your Project¶
cuFFTDx is a header-only library, thus to use it users just need to the include the directory with cufftdx.hpp and commonDx
into their compilation commands. All other requirements are listed in the Requirements section. The
easiest way is to use the MathDx include directory:
nvcc -std=c++17 -arch sm_XY (...) -I<mathdx_include_dir> <your_source_file>.cu -o <your_binary>
When you unpack MathDx YY.MM package tarball into in <your_directory>, cufftdx.hpp file will be available at the following
locations:
<your_directory>/nvidia/mathdx/yy.mm/include/<your_directory>/nvidia/mathdx/yy.mm/include/cufftdx/include/
The commonDx headers will be available at the following location:
<your_directory>/nvidia/mathdx/yy.mm/include/
You can review Makefile shipped alongside cuFFTDx examples to check how they are compiled.
cuFFTDx In Your CMake Project¶
The MathDx package provides configuration files that simplify using cuFFTDx in other CMake projects. After
finding mathdx using find_package, users have to link mathdx::cufftdx to their target. This propagates the include directory
cufftdx_INCLUDE_DIRS, the mathdx::commondx dependency, and the C++17 requirement to their target.
find_package(mathdx REQUIRED COMPONENTS cufftdx CONFIG)
target_link_libraries(YourProgram mathdx::cufftdx)
You can pass the path to MathDx package using PATHS option:
find_package(mathdx REQUIRED COMPONENTS cufftdx CONFIG PATHS "<your_directory>/nvidia/mathdx/yy.mm/")
Alternatively, you can set mathdx_ROOT during cmake configuration of your project:
cmake -Dmathdx_ROOT="<your_directory>/nvidia/mathdx/yy.mm/" (...)
Defined Variables¶
mathdx_cufftdx_FOUND,cufftdx_FOUNDTrue if cuFFTDx was found.
cufftdx_INCLUDE_DIRScuFFTDx include directories.
mathdx_INCLUDE_DIRSMathDx include directories.
mathdx_VERSIONMathDx package version number in
X.Y.Zformat.cuFFTDx_VERSIONcuFFTDx version number in
X.Y.Zformat.MathDx/cuFFTDx version matrix
MathDx
cuFFTDx
22.02
1.0.0
22.11
1.1.0
24.01
1.1.1
24.04
1.2.0