在C++的GPU库thrust中,有两种vector
thrust::device_vector<int> D; //GPU使用的内存中的向量 thrust::host_vector<int> H; //CPU使用的内存中的向量
其中host_vector是可以用构造函数初始化的,比如:
thrust::host_vector<int> H(10,1); //长度为10,每个元素都是1
但是device_vector这么做编译都不能通过……不能理解……
官网上给出的例子是可以的啊:
https://code.google.com/p/thrust/wiki/QuickStartGuide
目前采用的方案是:
构造host_vector,然后拷贝给device_vector
时间: 2024-11-05 21:46:51