diff options
author | Tim Dettmers <tim.dettmers@gmail.com> | 2021-11-29 09:32:13 -0800 |
---|---|---|
committer | Tim Dettmers <tim.dettmers@gmail.com> | 2021-11-29 09:32:13 -0800 |
commit | 20e1677dfdc4495038fd780807c8cbc253adf921 (patch) | |
tree | 42011169e55eab3f4226ff171d84edac84ec6f8f /errors_and_solutions.md | |
parent | 3cff6795fb70dd99b4802593f3c70d291e0cd1dc (diff) |
Added module override, bnb.nn.Embedding #13 #15 #19
Diffstat (limited to 'errors_and_solutions.md')
-rw-r--r-- | errors_and_solutions.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/errors_and_solutions.md b/errors_and_solutions.md index dd99f7c..5e8b2d2 100644 --- a/errors_and_solutions.md +++ b/errors_and_solutions.md @@ -6,3 +6,16 @@ If you are feeling lucky, you can also try to compile the library from source. T __If you encounter any other error not listed here please create an issue. This will help resolve your problem and will help out others in the future. + + +# fatbinwrap + +This error occurs if there is a mismatch between CUDA versions in the C++ library and the CUDA part. Make sure you have right CUDA in your $PATH and $LD_LIBRARY_PATH variable. In the conda base environment you can find the library under: +```bash +ls $CONDA_PREFIX/lib/*cudart* +``` +Make sure this path is appended to the `LD_LIBRARY_PATH` so bnb can find the CUDA runtime environment library (cudart). + +If this does not fix the issue, please try [compilation from source](compile_from_source.md) next. + +If this does not work, please open an issue and paste the printed environment if you call `make` and the associated error when running bnb. |