Skip to content

Releases: ROCm/rocFFT

rocFFT 1.0.29 for ROCm 6.2.2

27 Sep 16:01
65aaf84
Compare
Choose a tag to compare

rocFFT code for ROCm 6.2.2 did not change. The library was rebuilt for the updated ROCm 6.2.2 stack.

rocFFT 1.0.29 for ROCm 6.2.1

20 Sep 19:58
65aaf84
Compare
Choose a tag to compare

Optimizations

  • Implemented 1D kernels for factorizable sizes < 1024

rocFFT 1.0.28 for ROCm 6.2.0

02 Aug 16:15
7a8c475
Compare
Choose a tag to compare

Optimizations

  • Implemented multi-device transform for 3D pencil decomposition. Contiguous dimensions on input and output bricks
    are transformed locally, with global transposes to make remaining dimensions contiguous.

Changes

  • Randomly generated accuracy tests are now disabled by default; these can be enabled using
    the --nrand option (which defaults to 0).

rocFFT 1.0.27 for ROCm 6.1.2

04 Jun 16:53
30044d1
Compare
Choose a tag to compare

rocFFT code for ROCm 6.1.2 did not change. The library was rebuilt for the updated ROCm 6.1.2 stack.

rocFFT 1.0.27 for ROCm 6.1.1

08 May 18:00
30044d1
Compare
Choose a tag to compare

Fixes

  • Fixed kernel launch failure on execute of very large odd-length real-complex transforms.

Additions

  • Enable multi-gpu testing on systems without direct GPU-interconnects

rocFFT 1.0.26 for ROCm 6.1.0

16 Apr 19:10
30044d1
Compare
Choose a tag to compare

Changes

  • Multi-device FFTs now allow batch greater than 1
  • Multi-device, real-complex FFTs are now supported
  • rocFFT now statically links libstdc++ when only std::experimental::filesystem is available (to guard
    against ABI incompatibilities with newer libstdc++ libraries that include std::filesystem)

rocFFT 1.0.25 for ROCm 6.0.2

31 Jan 20:13
0ec78f1
Compare
Choose a tag to compare

rocFFT code for ROCm 6.0.2 did not change. The library was rebuilt for the updated ROCm 6.0.2 stack.

rocFFT 1.0.25 for ROCm 6.0.0

15 Dec 18:30
b9926b5
Compare
Choose a tag to compare

Added

  • Implemented experimental APIs to allow computing FFTs on data distributed across multiple devices in a single process.

    rocfft_field is a new type that can be added to a plan description, to describe layout of FFT input or output. rocfft_field_add_brick can be called one or more times to describe a brick decomposition of an FFT field, where each brick can be assigned a different device.

    These interfaces are still experimental and subject to change. We are interested to hear feedback on them. Questions and concerns may be raised by opening issues on the rocFFT issue tracker.

    Note that at this time, multi-device FFTs have several limitations:

    • Real-complex (forward or inverse) FFTs are not currently supported.
    • Planar format fields are not currently supported.
    • Batch (i.e. number_of_transforms provided to rocfft_plan_create) must be 1.
    • The FFT input is gathered to the current device at execute time, so all of the FFT data must fit on that device.

    We expect these limitations to be removed in future releases.

Optimizations

  • Improved performance of some small 2D/3D real FFTs supported by 2D_SINGLE kernel. gfx90a gets more optimization
    by offline tuning.
  • Removed an extra kernel launch from even-length real-complex FFTs that use callbacks.

Changed

  • Built kernels in solution-map to library kernel cache.

  • Real forward transforms (real-to-complex) no longer overwrite input. rocFFT still may overwrite real inverse (complex-to-real) input, as this allows for faster performance.

  • rocfft-rider and dyna-rocfft-rider have been renamed to rocfft-bench and dyna-rocfft-bench, controlled by the
    BUILD_CLIENTS_BENCH CMake option. Links for the old file names are installed, and the old
    BUILD_CLIENTS_RIDER CMake option is accepted for compatibility but both will be removed in a future release.

  • Binaries in debug builds no longer have a "-d" suffix.

Fixed

  • rocFFT now correctly handles load callbacks that convert data from a smaller data type (e.g. 16-bit integers -> 32-bit float).

rocFFT 1.0.24 for ROCm 5.7.1

13 Oct 18:57
7520fc6
Compare
Choose a tag to compare

rocFFT code for ROCm 5.7.1 did not change. The library was rebuilt for the updated ROCm 5.7.1 stack.

rocFFT 1.0.24 for ROCm 5.7.0

15 Sep 17:29
7520fc6
Compare
Choose a tag to compare

Optimizations

  • Improved performance of complex forward/inverse 1D FFTs (2049 <= length <= 131071) that use Bluestein's algorithm.

Added

  • Implemented a solution map version converter and finish the first conversion from ver.0 to ver.1. Where version 1 removes some incorrect kernels (sbrc/sbcr using half_lds)

Changed

  • Moved rocfft_rtc_helper executable to lib/rocFFT directory on Linux.
  • Moved library kernel cache to lib/rocFFT directory.