Pointcept / Pointcept

Pointcept: a codebase for point cloud perception research. Latest works: PTv3 (CVPR'24 Oral), PPT (CVPR'24), OA-CNNs (CVPR'24), MSC (CVPR'23)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Conda install PyTorch might cause a failure to build pointops

mbendjilali opened this issue · comments

Hello,
As of today, the conda install of PyTorch is dynamically linked to an old version of MKL, which does not contain the symbol iJIT_NotifyEvent, leading to a crash when launching the libs/pointops/setup.py script.
To alleviate this issue, I recommend following this topic solution, i.e. using pip install for PyTorch, as it is statically linked to MKL.
pip3 install torch==1.12.1+cu113 torchvision==0.13.1+cu113 torchaudio==0.12.1+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html

Thank you for pointing out this issue!!