当前位置:   article > 正文

Debug报错:THC\THC.h: No such file or directory; pip从.git子文件夹中安装指定分支_‘#include cudastream_t’

‘#include cudastream_t’

Debug报错:THC\THC.h: No such file or directory; pip从.git子文件夹中安装

问题1描述
编译Pointnet2.PyTorch仓库中的setup.py时报THC\THC.h: No such file or directory。

问题解决
原因是THC.h在pytorch 1.11版本中被移除了,需要修改代码。仓库issues给除了解决方法:

//Comment Out /src/ball_query.cpp group_points.cpp interpolate.cpp pointnet2_api.cpp sampling.cpp
把上面列出的文件的以下行注释掉
//#include <THE/THC.h>
//extern THCState *state;
//cudaStream_t stream = THCState_getCurrentStream(state);

改为
#include <ATen/cuda/CUDAContext.h>
#include <ATen/cuda/CUDAEvent.h>
cudaStream_t stream = at::cuda::getCurrentCUDAStream();

然后
replace the AT_CHECK with TORCH_CHECK in the ball_query.cpp
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

问题2描述
部分仓库中setup.py文件在子文件夹中,需要使用pip install 从子文件夹中直接安装某个分支

解决方案
比如上面这个PointNet2.Pytorch仓库的setup.py在子文件夹pointnet2中,可以这样安装branch分支:

pip install git+https://github.com/sshaoshuai/Pointnet2.PyTorch.git@master#subdirectory=pointnet2
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/81915
推荐阅读
相关标签
  

闽ICP备14008679号