欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 房产 > 家装 > “thrust“ has no member “device“

“thrust“ has no member “device“

2025/4/3 10:42:05 来源:https://blog.csdn.net/Garfield2005/article/details/146511085  浏览:    关键词:“thrust“ has no member “device“

背景

安装nvidia的MinkowskiEngine库时,报错:“thrust” has no member “device”(其实还有其他错误,这些错误的本质原因是一样的)

# 安装代码
mkdir -p /workspace
cd /workspace
git clone https://github.com/NVIDIA/MinkowskiEngine.git
cd /workspace/MinkowskiEngine
TORCH_CUDA_ARCH_LIST="7.5 8.0 8.9" python3 setup.py install --blas=openblas --force_cuda

原因分析

  1. 笔者的环境是CUDA12.1
  2. 错误的原因很简单,cuda版本太新,thrust库的使用发生了变化
  3. 解决方法很简单:在对应文件中加入需要的头文件,比如src/3rdparty/concurrent_unordered_map.cuh中报标题中的错误,则只需要添加:include <thrust/execution_policy.h>即可

解决方案

mkdir -p /workspace
cd /workspace
git clone https://github.com/NVIDIA/MinkowskiEngine.git
cd /workspace/MinkowskiEngine
# <thrust/execution_policy.h>头文件是解决编译报错问题:error: namespace "thrust" has no member "device"
# <thrust/unique.h>、<thrust/sort.h>是解决类似的问题
sed -i '31i #include <thrust/execution_policy.h>' ./src/convolution_kernel.cuh
sed -i '39i #include <thrust/unique.h>\n#include <thrust/remove.h>' ./src/coordinate_map_gpu.cu
sed -i '38i #include <thrust/execution_policy.h>\n#include <thrust/reduce.h>\n#include <thrust/sort.h>' ./src/spmm.cu
sed -i '38i #include <thrust/execution_policy.h>' ./src/3rdparty/concurrent_unordered_map.cuhTORCH_CUDA_ARCH_LIST="7.5 8.0 8.9" python3 setup.py install --blas=openblas --force_cuda

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

热搜词