1

尝试使用推力将数据从主机简单复制到设备。它正在输出:

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。

4

1 回答 1

1

原来是 5.5 生产版本中的一个错误。我卸载并重新安装了5.0,一切正常。

于 2013-08-10T05:46:55.993 回答