From 20e1677dfdc4495038fd780807c8cbc253adf921 Mon Sep 17 00:00:00 2001 From: Tim Dettmers Date: Mon, 29 Nov 2021 09:32:13 -0800 Subject: Added module override, bnb.nn.Embedding #13 #15 #19 --- errors_and_solutions.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'errors_and_solutions.md') 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. -- cgit v1.2.3