在现有的C项目中使用CUDA Thrust:编译错误

TimD1

我正在尝试将以下基本代码(radix_sort_128x.cu)合并到现有C项目中:

#include <thrust/device_vector.h>                                                
#include <thrust/copy.h>                                                         
#include <thrust/sort.h>                                                         

#include "cuda.h"                                                                
extern "C" {                                                                     
    #include "radix_sort_128x.h"                                                  
}                                                                                

__host__ __device__ bool operator<(const mm128_t & lhs, const mm128_t & rhs)        
{ return lhs.x < rhs.x; }                                                        

extern "C"                                                                       
void radix_sort_128x_kernel(mm128_t* list, size_t n) {                           
    thrust::device_vector<mm128_t> list_d(list, list + n);                       
    thrust::sort(list_d.begin(), list_d.end());                                     
    thrust::copy(list_d.begin(), list_d.end(), list);                               
}

但是,当我尝试使用NVCC(nvcc -c -o radix_sort_128x.o radix_sort_128x.cu编译此文件时,出现以下错误:

/opt/rh/devtoolset-8/root/usr/include/c++/8/bits/basic_string.tcc: In instantiation of ‘static std::basic_string<_CharT, _Traits, _Alloc>::_Rep* std::basic_string<_CharT, _Traits, _Alloc>::_Rep::_S_create(std::basic_string<_CharT, _Traits, _Alloc>::size_type, std::basic_string<_CharT, _Traits, _Alloc>::size_type, const _Alloc&) [with _CharT = char16_t; _Traits = std::char_traits<char16_t>; _Alloc = std::allocator<char16_t>; std::basic_string<_CharT, _Traits, _Alloc>::size_type = long unsigned int]’:
/opt/rh/devtoolset-8/root/usr/include/c++/8/bits/basic_string.tcc:578:28:   required from ‘static _CharT* std::basic_string<_CharT, _Traits, _Alloc>::_S_construct(_InIterator, _InIterator, const _Alloc&, std::forward_iterator_tag) [with _FwdIterator = const char16_t*; _CharT = char16_t; _Traits = std::char_traits<char16_t>; _Alloc = std::allocator<char16_t>]’
/opt/rh/devtoolset-8/root/usr/include/c++/8/bits/basic_string.h:5052:20:   required from ‘static _CharT* std::basic_string<_CharT, _Traits, _Alloc>::_S_construct_aux(_InIterator, _InIterator, const _Alloc&, std::__false_type) [with _InIterator = const char16_t*; _CharT = char16_t; _Traits = std::char_traits<char16_t>; _Alloc = std::allocator<char16_t>]’
/opt/rh/devtoolset-8/root/usr/include/c++/8/bits/basic_string.h:5073:24:   required from ‘static _CharT* std::basic_string<_CharT, _Traits, _Alloc>::_S_construct(_InIterator, _InIterator, const _Alloc&) [with _InIterator = const char16_t*; _CharT = char16_t; _Traits = std::char_traits<char16_t>; _Alloc = std::allocator<char16_t>]’
/opt/rh/devtoolset-8/root/usr/include/c++/8/bits/basic_string.tcc:656:134:   required from ‘std::basic_string<_CharT, _Traits, _Alloc>::basic_string(const _CharT*, std::basic_string<_CharT, _Traits, _Alloc>::size_type, const _Alloc&) [with _CharT = char16_t; _Traits = std::char_traits<char16_t>; _Alloc = std::allocator<char16_t>; std::basic_string<_CharT, _Traits, _Alloc>::size_type = long unsigned int]’
/opt/rh/devtoolset-8/root/usr/include/c++/8/bits/basic_string.h:6725:95:   required from here
/opt/rh/devtoolset-8/root/usr/include/c++/8/bits/basic_string.tcc:1067:1: error: cannot call member function ‘void std::basic_string<_CharT, _Traits, _Alloc>::_Rep::_M_set_sharable() [with _CharT = char16_t; _Traits = std::char_traits<char16_t>; _Alloc = std::allocator<char16_t>]’ without object __p->_M_set_sharable();

看来我的任何#include语句(使用Thrust标头)都会导致此错误,并且可能是由于C vs C ++冲突引起的。任何想法如何解决这个问题?我尝试将整个项目编译为C ++,但这并没有解决任何问题。提前致谢!

TimD1

我的CUDA版本(10.1)与GCC版本(8.3.1)不兼容。我曾尝试将GCC降级到4.3.5,但没有意识到其中的符号链接/usr/local/cuda/include将CUDA指向devtoolset-8GCC版本8.3.1,而我的降级尝试失败了。

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章