-
Notifications
You must be signed in to change notification settings - Fork 17
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
Cuda compiler #31
Comments
Good point - I haven't used CUDA in about 5 years, and forgot that the compiler is
Does that give enough of the toolkit to compile things? |
Sorry for late reply. I have some bad news on this front - altough the nvidia-cuda-toolkit indeed provides everything we need to compile cuda, it does not work on the target g3.4xlarge machine. The GPU there is too "new" for the drivers in jessie repos. One solution is to run Debian Stretch (probably not doable at this point) or to install the drivers using jessie backports. The rough steps I took to make it working are the following:
|
Yes - someone pointed out the driver problem in #39; it turned out I'd updated in my AMI Thanks for the set of steps though - full solutions are always appreciated. |
Hi,
I was glad to learn that
nvidia-cuda-dev
will be installed on the AMI. However, it would really help to also install associated compilernvcc
because the code that uses cuda needs to be compiled by it.A possible workaround would be to add compiled binaries to the git repo that would be just linked by g++ but this does not seem like a good practice.
The text was updated successfully, but these errors were encountered: