3dem / model-angelo

Automatic atomic model building program for cryo-EM maps
MIT License
110 stars 18 forks source link

UserWarning: Applied workaround for CuDNN issue, install nvrtc.so #104

Open arr0i3 opened 2 months ago

arr0i3 commented 2 months ago

Dear all,

I have encountered this UserWarning when running model_angelo build_no_seq:

~/anaconda3/envs/model-angelo_local/lib/python3.10/site-packages/torch/nn/modules/conv.py:605: UserWarning: Applied workaround for CuDNN issue, install nvrtc.so (Triggered internally at /opt/conda/conda-bld/pytorch_1711403388920/work/aten/src/ATen/native/cudnn/Conv_v8.cpp:80.)

Following this StackOverflow question I have added a symbolic link at ~/anaconda3/envs/model-angelo_local/lib:

libnvrtc.so -> libnvrtc.so.11.8.89

besides the one that was generated automatically:

libnvrtc.so.11.2 -> libnvrtc.so.11.8.89

By running ln -sfn libnvrtc.so.11.8.89 libnvrtc.so

And now there is no warning. Hope it helps :)