You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@dbolya thanks for your reply. I solved this problem. Actually problems with gcc and g++ version.
I have installed gcc and g++ 6.5.0 version but this is not compatible with CUDA 9.0.
see this facebookresearch/maskrcnn-benchmark#25 (comment)
Environment info:
Ubuntu 18.04
CUDA 9.0
python 3.6
torch== 1.1.0
torchvision=== 0.2.0
gcc and g++ version 6.5.0
Step to solve this problem:
sudo apt-get install gcc-5 g++-5
link from gcc 6 g++ 6 to gcc 5 g++ 5 sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 50 --slave /usr/bin/g++ g++ /usr/bin/g++-5 --slave /usr/bin/gcov gcov /usr/bin/gcov-5
When I compile deformable convolutional layers
cd external/DCNv2 python setup.py build develop
I got this error
Environment info:
Ubuntu 18.04
CUDA 9.0
python 3.6
torch== 1.1.0
torchvision=== 0.2.0
The text was updated successfully, but these errors were encountered: