2

我在 CUDA 中有以下类函子

class forSecondMax{
private:
    int toExclude;
public:
    __device__ void setToExclude(int val){
        toExclude = val;
    }
    __device__ bool operator () 
       (const DereferencedIteratorTuple& lhs, const DereferencedIteratorTuple& rhs) 
  {
    using thrust::get;
    //if you do <=, returns last occurence of largest element. < returns first
    if (get<0>(lhs)== get<2>(lhs) /*&& get<0>(rhs) == get<2>(rhs)*/ && get<0>(lhs) != toExclude/* && get<0>(rhs)!= toExclude */) return get<1>(lhs) < get<1>(rhs); else
    return true ;
  }

};

有没有办法从主机设置 toExclude 的值?

4

1 回答 1

1

解决此问题所需要做的就是为函子定义一个构造函数,该函子从参数中设置数据成员。所以你的班级看起来像这样:

class forSecondMax{
    private:
        int toExclude;
    public:
        __device__ __host__ forSecondMax(int x) : toExclude(x) {};
        __device__ __host__ bool operator () 
            (const DereferencedIteratorTuple& lhs, 
             const DereferencedIteratorTuple& rhs) 
            {
                using thrust::get;
                if (get<0>(lhs)== get<2>(lhs) && get<0>(lhs) != toExclude) 
                    return get<1>(lhs) < get<1>(rhs);
                else
                    return true ;
            }

};

[免责声明:用浏览器编写,从未测试或编译,使用风险自负]

要在将函子传递给推力算法之前设置值,请创建函子的实例并将其传递给推力调用,例如:

forSecondMax op(10);
thrust::remove_if(A.begin(), A.end(), op);

这将toExclude在类的新实例中将数据成员的值设置为 10,并在流压缩调用中使用该实例。

于 2013-01-08T10:49:32.340 回答