Skip to content

Commit a9e2b3f

Browse files
committed
Small fixes
1 parent f2ceec4 commit a9e2b3f

File tree

41 files changed

+146
-138
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+146
-138
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,16 @@ jobs:
2121
- name: Checkout the Repository
2222
uses: actions/checkout@v2
2323

24+
- name: Install CUDA
25+
run: |
26+
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-ubuntu1804.pin
27+
sudo mv cuda-ubuntu1804.pin /etc/apt/preferences.d/cuda-repository-pin-600
28+
curl -L -O https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-keyring_1.0-1_all.deb
29+
sudo dpkg -i cuda-keyring_1.0-1_all.deb
30+
sudo add-apt-repository "deb https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/ /"
31+
sudo apt-get update -q
32+
sudo apt-get install cuda -y --no-install-recommends
33+
2434
- name: Install OpenMPI
2535
run: |
2636
sudo apt-get update -q
@@ -88,6 +98,16 @@ jobs:
8898
- name: Checkout the Repository
8999
uses: actions/checkout@v2
90100

101+
- name: Install CUDA
102+
run: |
103+
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-ubuntu1804.pin
104+
sudo mv cuda-ubuntu1804.pin /etc/apt/preferences.d/cuda-repository-pin-600
105+
curl -L -O https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-keyring_1.0-1_all.deb
106+
sudo dpkg -i cuda-keyring_1.0-1_all.deb
107+
sudo add-apt-repository "deb https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/ /"
108+
sudo apt-get update -q
109+
sudo apt-get install cuda -y --no-install-recommends
110+
91111
- name: Install OpenMPI
92112
run: |
93113
sudo apt-get update -q

0 commit comments

Comments
 (0)