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
@Denizdius this code was written long before CUDA 9.0 was released. I'm unsure if this is willing to be maintained anymore, but if you contribute a PR I'd be happy to approve.
in CUDA files in correlation.cu ,
cudaThreadSynchronize() has been deprecated since CUDA 9.0 and is no longer recommended for use.
instead of cudaThreadSynchronize() use cudaDeviceSynchronize(), which serves the same purpose of synchronizing the CPU thread with the CUDA device.
Same issue at covariance.cu
The text was updated successfully, but these errors were encountered: