3

我收到一条烦人的消息,我不太确定我做错了什么。

float4 *IntsOnHost = new float4[ MAXX * (MAXY - 1) ];
//copy possible intersection points from device to host
CU_SAFE_CALL(cudaMemcpy(IntsOnHost,IntsOnDevToCpyToHost,(MAXX*(MAXY - 1)-1)*sizeof(float4),cudaMemcpyDeviceToHost));
thrust::device_vector<float4> IntsOnDev (IntsOnHost,IntsOnHost + (MAXX * (MAXY - 1)-1)*sizeof(float4)); 
//find the index of the smallest intersection point
thrust::device_vector<float4>::iterator it =  thrust::min_element(IntsOnDev.begin(),IntsOnDev.end(),equalOperator());   

和谓词:

struct equalOperator
{
  __host__ __device__
    bool operator()(float4 x, float4 y)
    {
        return ( x.w > y.w );
    }
};

错误信息:

1>c:\program files\nvidia gpu 计算工具包\cuda\v4.0\include\thrust\detail\device\generic\extrema.inl(104): 错误:无法调用函数“equalOperator::operator()”使用给定的参数列表

谢谢!

4

1 回答 1

5

在这个案子上花了几个小时后,我设法解决了这个问题。经过长时间的审查后,我输入了 .inl 文件,该文件执行该min_element()函数并调用了operator()我提供的适当文件,我注意到我遗漏了一些

常量

所以这是答案:

struct equalOperator
{
  __host__ __device__
    bool operator()(const float4 x, const float4 y) const
    {
        return ( x.w > y.w );
    }
};  

花了我几天...

于 2012-02-12T06:20:44.373 回答