You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/pdlp/README.md
+6-10Lines changed: 6 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,18 +18,16 @@ nvidia-smi
18
18
19
19
This should print a table of GPU-related stats. If it doesn't don't worry: installing the Cuda Toolkit from https://developer.nvidia.com/cuda-toolkit should help!
20
20
21
-
### Install CUDA from website
21
+
### Install CUDA and Driver from the Nvidia website
22
22
23
-
Download Cuda from https://developer.nvidia.com/cuda-toolkit for the appropriate OS and architecture.
23
+
Download Cuda Tooklit and the Nvidia driver from https://developer.nvidia.com/cuda-toolkit for the appropriate OS and architecture.
24
24
25
25
Note, that installing the `nvidia-cuda-toolkit` package from apt will work on many Linux installations, *but* if the drivers are missing and you attempt to install them with
26
26
```
27
27
apt install nvidia-cuda-toolkit
28
28
apt install nvidia-utils-515
29
29
```
30
-
or `nvidia-utils-some-other-number`, this may lead to errors with versions of cuda libraries on versions of Lunux that are resolved by cleaning up the cuda drivers and toolkit from the machine and installing the toolkit from the website, which should give you the drivers as well.
31
-
32
-
If you run into any trouble, please get in touch with Ivet right away so we can look at it together. Ivet did have some trouble getting it all to work on her laptop and is still learning about supporting different versions of Cuda on different operating systems.
30
+
or `nvidia-utils-some-other-number`, this may lead to errors with versions of cuda libraries on versions of Lunux that are resolved by cleaning up the cuda drivers and toolkit from the machine and installing again from the website.
33
31
34
32
Check again that the drivers are present by running
35
33
```
@@ -44,14 +42,12 @@ nvcc --version
44
42
45
43
If you see a version, this means that the cuda compiler nvcc is up and running.
46
44
47
-
When both work, you should check that `/usr/local/cuda` exists.
45
+
When both work, on Linux, you should check that `/usr/local/cuda` exists.
48
46
49
47
#### Build
50
48
51
-
* Checkout the HiGHS codebase from Github, and use the branch `cuda-updates`
0 commit comments