We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think we allocate too much memory in the rocfft backend. The function rocfft_plan_get_work_buffer_size https://rocm.docs.amd.com/projects/rocFFT/en/latest/reference/api.html#_CPPv432rocfft_plan_get_work_buffer_sizeK11rocfft_planP6size_t returns a size in bytes.
rocfft_plan_get_work_buffer_size
If I am not mistaken we allocate a buffer of type Kokkos::complex<float_type*> in
Kokkos::complex<float_type*>
kokkos-fft/fft/src/KokkosFFT_ROCM_plans.hpp
Lines 184 to 195 in 95bd3b3
BufferViewType
kokkos-fft/fft/src/KokkosFFT_Plans.hpp
Lines 101 to 102 in 95bd3b3
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I think we allocate too much memory in the rocfft backend. The function
rocfft_plan_get_work_buffer_size
https://rocm.docs.amd.com/projects/rocFFT/en/latest/reference/api.html#_CPPv432rocfft_plan_get_work_buffer_sizeK11rocfft_planP6size_t returns a size in bytes.If I am not mistaken we allocate a buffer of type
Kokkos::complex<float_type*>
inkokkos-fft/fft/src/KokkosFFT_ROCM_plans.hpp
Lines 184 to 195 in 95bd3b3
BufferViewType
is given bykokkos-fft/fft/src/KokkosFFT_Plans.hpp
Lines 101 to 102 in 95bd3b3
The text was updated successfully, but these errors were encountered: