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
Hi, When I run the simpleCUFFT_2d_MGPU, after the call the result = cufftXtMemcpy(planComplex, d_d_f, d_f, CUFFT_COPY_DEVICE_TO_DEVICE);,I copyData d_f、d_d_f from gpus to host memory, like this,
In host Memory, d_f_out!=d_d_f_out. But according to the cuda docs cufftXtMemcpy Device to Device just change the order of data in gpus,
So Is there something I do wrong? Thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,

When I run the simpleCUFFT_2d_MGPU, after the call the result = cufftXtMemcpy(planComplex, d_d_f, d_f, CUFFT_COPY_DEVICE_TO_DEVICE);,I copyData d_f、d_d_f from gpus to host memory, like this,
In host Memory, d_f_out!=d_d_f_out. But according to the cuda docs

cufftXtMemcpy Device to Device just change the order of data in gpus,
So Is there something I do wrong?
Thanks.
The text was updated successfully, but these errors were encountered: