我正在尝试从推力图编译一个简单的示例。
目前,我已将所有内容都注释掉了main(void)
我正在寻找有人愿意给出的任何方向!
我的编译错误是这样的:
mseil@cuda:~/mseil_CUDA/test$ nvcc Example.cu
/usr/local/cuda/bin/../include/thrust/detail/device/cuda/reduce_by_keyvalue.inl(90): error: name followed by "::" must be a class or namespace name
/usr/local/cuda/bin/../include/thrust/graph/detail/adjacency_list.inl(141): error: name followed by "::" must be a class or namespace name
/usr/local/cuda/bin/../include/thrust/graph/detail/adjacency_list.inl(213): error: name followed by "::" must be a class or namespace name
/usr/local/cuda/bin/../include/thrust/graph/detail/adjacency_list.inl(344): error: name followed by "::" must be a class or namespace name
4 errors detected in the compilation of "/tmp/tmpxft_00007122_00000000-9_Example.cpp4.ii".
我发现了第一个错误,即include/thrust/detail/device/cuda/reduce_by_keyvalue.inl
文件的第 90 行,但我看不出问题出在哪里。我是 C++ 的新手(而且我对 C 的了解是初学者的水平)。就模板文件而言,一切看起来都很好,如果 NVIDIA 的人不知道他们在做什么,我会感到震惊——所以一定是我。
第 90 行左右的代码:
typedef typename thrust::iterator_traits<InputIterator1>::difference_type difference_type;
difference_type n =key_last - key_first;
difference_type N =result_last - result_first;
const std::size_t BLOCK_SIZE =512; // number of threads per block
const std::size_t MAX_BLOCKS =thrust::experimental::arch::max_active_threads() / BLOCK_SIZE;
const std::size_t NUM_BLOCKS =std::min( MAX_BLOCKS, n + (BLOCK_SIZE - 1) / BLOCK_SIZE); //offending line.
目前我的主要代码中唯一的代码:(其他所有内容都已注释。)
#include <thrust/graph/adjacency_list.hpp>
using namespace thrust;
int main(void){
typedef adjacency_list<undirectedS, disallow_parallelS> graph_t;
return 0;
}