Skip to content

Commit

Permalink
Rely on the user allocation (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
tpadioleau authored Oct 9, 2024
1 parent f64a013 commit c8ba790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fft/src/KokkosFFT_Transform.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ void ihfft(const ExecutionSpace& exec_space, const InViewType& in,
OutViewType out_conj;
rfft(exec_space, in, out, new_norm, axis, n);
KokkosFFT::Impl::conjugate(exec_space, out, out_conj);
out = out_conj;
Kokkos::deep_copy(exec_space, out, out_conj);
}

// 2D FFT
Expand Down

0 comments on commit c8ba790

Please sign in to comment.