Skip to content

Commit

Permalink
Update rocFFT module to support latest 1.0.23 version updates
Browse files Browse the repository at this point in the history
Updated rocFFT submodule
  • Loading branch information
af-ayala authored Sep 11, 2023
1 parent fc6af3f commit 2579156
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Partial documentation for hipFFT is available at [hipFFT].
old file name is 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.
- The minimum rocFFT required version has been updated to 1.0.21.

## hipFFT 1.0.12 for ROCm 5.6.0

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ endif()
if( ROCM_FOUND )
# Package specific CPACK vars
if( NOT BUILD_WITH_LIB STREQUAL "CUDA" )
rocm_package_add_dependencies(DEPENDS "rocfft >= 1.0.19")
rocm_package_add_dependencies(DEPENDS "rocfft >= 1.0.21")
else()
rocm_package_add_dependencies(DEPENDS "cufft >= 10.0.0")
endif()
Expand Down
2 changes: 1 addition & 1 deletion clients/rocFFT
7 changes: 6 additions & 1 deletion clients/tests/gtest_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ double max_l2_eps_half = 0.0;
// Control whether we use FFTW's wisdom (which we use to imply FFTW_MEASURE).
bool use_fftw_wisdom = false;

// Compare results against FFTW in accuracy tests
bool fftw_compare = true;

// Cache the last cpu fft that was requested
last_cpu_fft_cache last_cpu_fft_data;

Expand Down Expand Up @@ -236,7 +239,9 @@ int main(int argc, char* argv[])
("seed", po::value<size_t>(&random_seed),
"Random seed; if unset, use an actual random seed.")
("callback_prob", po::value<double>(&callback_prob)->default_value(0.1),
"Probability of running individual callback transforms");
"Probability of running individual callback transforms")
("fftw_compare",
po::value<bool>(&fftw_compare)->default_value(true), "Compare to FFTW in accuracy tests");
// clang-format on

po::variables_map vm;
Expand Down

0 comments on commit 2579156

Please sign in to comment.