Installation (GPU)¶
Note
Python users may install the cuFINUFFT package using pip install cufinufft
, which contains binary wheels compiled against CUDA 10.2 on Linux. If these requirements do not work for your use case, please see the detailed instructions below.
The GPU version of FINUFFT is called cuFINUFFT and uses CUDA kernels to speed up the calculation of the NUDFT on the GPU. It is currently being tested on the Linux platform, but you should be able to adapt the instructions below to work on other platforms, such as Windows and macOS.
CMake installation¶
To automate the installation process, we use cmake
. To use this, run
mkdir build
cd build
cmake -D FINUFFT_USE_CUDA=ON ..
cmake --build .
Note that for this to work, you must have the Nvidia CUDA toolchain installed (such as the nvcc
compiler, among others). To speed up the compilation, you can also add the -j
flag to cmake --build .
to specify the number of cores to use.
In order to configure cuFINUFFT for a specific compute capability, use the CMAKE_CUDA_ARCHITECTURES
flag. For example, to compile for compute capability 8.0 (supported by Nvidia A100), run
cmake -D FINUFFT_USE_CUDA=ON CMAKE_CUDA_ARCHITECTURES=80 .
The libcufinufft.so
(along with libfinufft.so
) will now be present in your build
directory.
Testing¶
To test your cuFINUFFT package, configure it with the BUILD_TESTING
and FINUFFT_BUILD_TESTS
flags set to ON
. In other words, run
cmake -D FINUFFT_USE_CUDA=ON -D BUILD_TESTING=ON -D FINUFFT_BUILD_TESTS=ON ..
Then after compiling with cmake --build .
, you execute the tests using
cmake --build . -t test
Note that these tests only checks if the compiled code executes – it does not verify accuracy (i.e., whether the code executes correctly).
Python interface¶
In addition to the C interface, cuFINUFFT also comes with a Python interface. As mentioned above, this can be most easily installed by running pip install cufinufft
, but it can also be installed from source. The Python interface code is located in the cupython
subdirectory, so to install it, you run
cd cupython
LD_LIBRARY_PATH="../build" LIBRARY_PATH="../build" pip install .
Note that the LD_LIBRARY_PATH
and LIBRARY_PATH
environment variables must be set for the Python interpreter to find libcufinufft.so
(assuming it has not been installed in the appropriate system directory).
Assuming pytest
is installed (otherwise, just run pip install pytest
), you can now test the installation by running
LD_LIBRARY_PATH="../build" pytest
Again, LD_LIBRARY_PATH
must be set in order for the interpreter to find the shared library. This applies to any invocation of the Python interpreter when using the cufinufft
package. (LIBRARY_PATH
is no longer necessary since there is no compilation at this stage.) In contrast to the C interface tests, these check for correctness, so a successful test run signifies that the library is working correctly.