You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But in [https://docs.nvidia.com/cuda/cufft/](cuFFT API Reference),we can get a sample with cudaDeviceSynchronize just behind the call of "cufftExecC2C".
The text was updated successfully, but these errors were encountered:
there is no need for cudaDeviceSynchronize because cudaStreamSynchronize already ensures all operations in the specified stream are completed, including the cufftExecC2C call. adding cudaDeviceSynchronize would redundantly synchronize all streams, which is unnecessary and less efficient
But in [https://docs.nvidia.com/cuda/cufft/](cuFFT API Reference),we can get a sample with cudaDeviceSynchronize just behind the call of "cufftExecC2C".
The text was updated successfully, but these errors were encountered: