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
cufftHandle
I suspect we create twice the CUDA plan, once with cufftCreate and again with cufftPlan1d
cufftCreate
cufftPlan1d
kokkos-fft/fft/src/KokkosFFT_Cuda_plans.hpp
Lines 39 to 54 in 4b82641
From what I understand in the cuFFT documentation, we should either
cufftMakePlan1d
Notice that both cufftCreate and cufftPlan1d take the plan by pointer whereas cufftMakePlan1d takes it by copy.
The text was updated successfully, but these errors were encountered:
That is true. I will make a fix
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I suspect we create twice the CUDA plan, once with
cufftCreate
and again withcufftPlan1d
kokkos-fft/fft/src/KokkosFFT_Cuda_plans.hpp
Lines 39 to 54 in 4b82641
From what I understand in the cuFFT documentation, we should either
cufftCreate
thencufftMakePlan1d
, https://docs.nvidia.com/cuda/cufft/index.html?highlight=cufftMakePlan1d#cufftmakeplan1dcufftPlan1d
, https://docs.nvidia.com/cuda/cufft/index.html?highlight=cufftMakePlan1d#cufftplan1dNotice that both
cufftCreate
andcufftPlan1d
take the plan by pointer whereascufftMakePlan1d
takes it by copy.The text was updated successfully, but these errors were encountered: