Skip to content

Instantly share code, notes, and snippets.

View sunlex0717's full-sized avatar

Wei Sun sunlex0717

View GitHub Profile
@sunlex0717
sunlex0717 / self.md
Created January 15, 2020 15:46 — forked from diorahman/self.md
CUDA Books: Self taught
@sunlex0717
sunlex0717 / waya-dl-setup.sh
Created December 7, 2018 11:05 — forked from mjdietzx/waya-dl-setup.sh
Install CUDA Toolkit v8.0 and cuDNN v6.0 on Ubuntu 16.04
#!/bin/bash
# install CUDA Toolkit v8.0
# instructions from https://developer.nvidia.com/cuda-downloads (linux -> x86_64 -> Ubuntu -> 16.04 -> deb (network))
CUDA_REPO_PKG="cuda-repo-ubuntu1604_8.0.61-1_amd64.deb"
wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/${CUDA_REPO_PKG}
sudo dpkg -i ${CUDA_REPO_PKG}
sudo apt-get update
sudo apt-get -y install cuda
@sunlex0717
sunlex0717 / Install NVIDIA Driver and CUDA.md
Created December 4, 2018 17:06 — forked from zhanwenchen/Install NVIDIA Driver and CUDA.md
Install NVIDIA CUDA 9.0 on Ubuntu 16.04.4 LTS