码迷,mamicode.com
首页 > 其他好文 > 详细

thrust::device_vector无法赋值?

时间:2014-12-06 15:16:05      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   os   使用   div   art   log   as   

在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无法赋值?

标签:blog   http   ar   os   使用   div   art   log   as   

原文地址:http://www.cnblogs.com/plwang1990/p/4148207.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!