Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save cagbal/3dd87c74dad15717d2f400caeff6cb55 to your computer and use it in GitHub Desktop.

Select an option

Save cagbal/3dd87c74dad15717d2f400caeff6cb55 to your computer and use it in GitHub Desktop.
// Go to additional drivers
// Install tested version of NVIDIA Driver
// Reboot PC
// http://www.r-tutor.com/gpu-computing/cuda-installation/cuda7.5-ubuntu
// Download https://developer.nvidia.com/cuda-downloads
sudo dpkg -i cuda-repo-ubuntu1404_7.5-18_amd64.deb
sudo apt-get update
sudo apt-get install cuda
// Reboot PC
export CUDA_HOME=/usr/local/cuda-7.5
export LD_LIBRARY_PATH=${CUDA_HOME}/lib64
PATH=${CUDA_HOME}/bin:${PATH}
export PATH
// Check the samples
cuda-install-samples-7.5.sh ~
cd ~/NVIDIA_CUDA-7.5_Samples
cd 1_Utilities/deviceQuery
make
./deviceQuery // This should print you some info
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment