We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82a9c8e commit 8e703b0Copy full SHA for 8e703b0
tests/mixed_int8/README.md
@@ -95,10 +95,22 @@ which means that the detected CUDA version is 11.3 but `bitsandbytes` outputs:
95
96

97
98
-Therefore check:
+First check:
99
100
+```bash
101
+echo $LD_LIBRARY_PATH
102
```
-ls -l /opt/conda/envs/py37/lib/libcudart.so
103
+
104
+If this contains multiple paths separated by `:`. Then you have to make sure that the correct CUDA version is set. By doing:
105
106
107
+ls -l $path/libcudart.so
108
+```
109
110
+On each path (`$path`) separated by `:`.
111
+If not, simply run
112
113
+ls -l $LD_LIBRARY_PATH/libcudart.so
114
115
116
and you can see
0 commit comments