Skip to content

Commit 8e703b0

Browse files
committed
clarify a bit
1 parent 82a9c8e commit 8e703b0

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

tests/mixed_int8/README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,22 @@ which means that the detected CUDA version is 11.3 but `bitsandbytes` outputs:
9595

9696
![image.png](https://s3.amazonaws.com/moonup/production/uploads/1660569284243-62441d1d9fdefb55a0b7d12c.png)
9797

98-
Therefore check:
98+
First check:
9999

100+
```bash
101+
echo $LD_LIBRARY_PATH
100102
```
101-
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+
```bash
107+
ls -l $path/libcudart.so
108+
```
109+
110+
On each path (`$path`) separated by `:`.
111+
If not, simply run
112+
```bash
113+
ls -l $LD_LIBRARY_PATH/libcudart.so
102114
```
103115

104116
and you can see

0 commit comments

Comments
 (0)