Closed halfjoe closed 5 years ago
Hi,
I was trying your code and when running "python setup.py install" I got this error. Do you have any idea why this happened?
Thanks.
Solved. Simply replace #if __CUDA_ARCH__ < 600 and defined(__CUDA_ARCH__) to #if __CUDA_ARCH__ < 600 && defined(__CUDA_ARCH__). And same for the other file "voxelization_cuda_kernel.cu".
#if __CUDA_ARCH__ < 600 and defined(__CUDA_ARCH__)
#if __CUDA_ARCH__ < 600 && defined(__CUDA_ARCH__)
Hi,
I was trying your code and when running "python setup.py install" I got this error. Do you have any idea why this happened?
Thanks.