3

我正在使用推力分区函数将数组分区为偶数和奇数。但是,当我尝试显示设备矢量时,它会显示随机值。请让我知道错误在哪里。我想我做的一切都是正确的。

#include<stdio.h>
#include <thrust/host_vector.h>
#include <thrust/device_vector.h>
#include<thrust/partition.h>

struct is_even
  {
      //const int toCom;
      //is_even(int val):toCom(val){}
    __device__
    bool operator()(const int &x)
    {
      return x%2;
    }
  };

void main(){


    thrust::host_vector<int> H(6);
    for(int i =0 ; i<H.size();i++){
        H[i] = i+1;
    }
    thrust::device_vector<int> D = H;
    thrust::partition(D.begin(),D.end(),is_even());
    for(int i =0 ;i< D.size();i++){
        printf("%d,",D[i]);
    }


    getchar();

}
4

1 回答 1

5

您不能通过省略号发送thrust::device_reference(即 的结果D[i]),printf因为它不是 POD 类型。请参阅文档。您的代码将为此产生编译器警告。

投到int第一:

for(int i = 0; i < D.size(); ++i)
{
  printf("%d,", (int) D[i]);
}
于 2011-12-28T21:01:24.153 回答