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
Hey thanks for the code. I don't want to draw attention to a bug here, but just mention a small thing.
I just tried compiling pointops and ran into the following error:
src/knnquery/knnquery_cuda.cpp:2:10: fatal error: THC/THC.h: No such file or directory
2 | #include <THC/THC.h>
| ^~~~~~~~~~~
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
According to this post "TH/THC namespace is dead". Removing the includes for THC within all .cpp files and recompiling works fine. It is therefore no longer required for newer cuda versions.
The text was updated successfully, but these errors were encountered:
Hey thanks for the code. I don't want to draw attention to a bug here, but just mention a small thing.
I just tried compiling pointops and ran into the following error:
According to this post "TH/THC namespace is dead". Removing the includes for THC within all .cpp files and recompiling works fine. It is therefore no longer required for newer cuda versions.
The text was updated successfully, but these errors were encountered: