-
Notifications
You must be signed in to change notification settings - Fork 197
New issue
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
Use 64 bit CuSolver API for Eigen decomposition #349
Conversation
I just noticed that |
Indeed, I remember discussing this very detail w/ @teju85 not too long ago. A good workaround here could be to be check the CUDA version and have the wrapper call the old version in 11.1. |
rerun tests |
@lowener, I'm ready to merge this over but I'm waiting to see the CI pass on rapidsai/cuml#4255 first. |
@gpucibot merge |
This PR replace the legacy call to
cusolverDnsyevj
with the 64-bit version.It also improves the indexing types used, from int to size_t when possible.