1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
.. toctree::
:maxdepth: 4
:caption: Contents:
======
hipFFT
======
hipFFT is a GPU FFT marshalling library. Currently, hipFFT supports
either `rocFFT`_ or `cuFFT`_ as backends.
hipFFT exports an interface that does not require the client to
change, regardless of the chosen backend. It sits between the
application and the backend FFT library, marshalling inputs into the
backend and results back to the application.
The basic usage pattern is:
* create a transform plan (once)
* perform (many) transforms using the plan
* destroy the plan
.. _rocFFT: https://rocfft.readthedocs.io/
.. _cuFFT: https://developer.nvidia.com/cufft
|