首页 > 代码库 > thrust::device_vector无法赋值?
thrust::device_vector无法赋值?
在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
thrust::device_vector无法赋值?
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。