Skip to content

Commit

Permalink
fix: fftw rapper name in ROCM_types
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuuichi Asahi committed Dec 5, 2024
1 parent 5fef62a commit e0cf843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fft/src/KokkosFFT_ROCM_types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ struct FFTDataType {

template <typename ExecutionSpace, typename T1, typename T2>
struct FFTPlanType {
using fftw_plan_type = ScopedFFTWPlanType<ExecutionSpace, T1, T2>;
using fftw_plan_type = ScopedFFTWPlan<ExecutionSpace, T1, T2>;
using rocfft_plan_type = ScopedRocfftPlan<ExecutionSpace, T1>;
using type = std::conditional_t<std::is_same_v<ExecutionSpace, Kokkos::HIP>,
rocfft_plan_type, fftw_plan_type>;
Expand Down

0 comments on commit e0cf843

Please sign in to comment.