DSP-SLAM icon indicating copy to clipboard operation
DSP-SLAM copied to clipboard

CUDA 11.3 build version mismatch

Open changh95 opened this issue 1 year ago • 1 comments

When building with the CUDA 11.3 script, there's a version mismatch between the installed CUDA and the conda requirements. Notice that the version of CUDA is 11.3.0, and the required CUDA version by conda is 11.3.1 .

Due to this, I think mmdetection3d fails to be installed. Below screenshot is the result

image

changh95 avatar Dec 26 '23 10:12 changh95

Found solution.

The error in the original post arises because PyTorch CPU gets installed due to version mismatch.

By export FORCE_CUDA="1", we can force PyTorch GPU installation, hence the problem does not rise.

changh95 avatar Dec 26 '23 14:12 changh95