尝试使用推力将数据从主机简单复制到设备。它正在输出:
libc++abi.dylib: terminate called throwing an exception
Abort trap: 6
代码:
#include <thrust/host_vector.h>
#include <thrust/device_vector.h>
void test()
{
thrust::host_vector<int> H(4);
H[0] = 14;
H[1] = 20;
H[2] = 38;
H[3] = 46;
thrust::device_vector<int> D = H; // causing error
}
int main()
{
test();
return 0;
}
这是我在 OS X 中编译和运行它的方法:
$ nvcc test.cu -o test
$ ./test
我安装了 CUDA 5.5,我相信它会自动安装 Thrust 1.6.0。