我们在
上运行以下串行C代码两个向量a []和b []:
double a[20000],b[20000],r=0.9;
for(int i=1;i<=10000;++i)
{
a[i]=r*a[i]+(1-r)*b[i]];
errors=max(errors,fabs(a[i]-b[i]);
b[i]=a[i];
}
请告诉我们如何将此代码移植到CUDA和Cublas?
答案 0 :(得分:5)
也可以使用thrust::transform_reduce
在Thrust中实现这种减少。正如talonmies所暗示的那样,这个解决方案融合了整个操作:
#include <thrust/device_vector.h>
#include <thrust/iterator/zip_iterator.h>
#include <thrust/transform_reduce.h>
#include <thrust/functional.h>
// this functor unpacks a tuple and then computes
// a weighted absolute difference of its members
struct weighted_absolute_difference
{
double r;
weighted_absolute_difference(const double r)
: r(r)
{}
__host__ __device__
double operator()(thrust::tuple<double,double> t)
{
double a = thrust::get<0>(t);
double b = thrust::get<1>(t);
a = r * a + (1.0 - r) * b;
return fabs(a - b);
}
};
int main()
{
using namespace thrust;
const std::size_t n = 20000;
const double r = 0.9;
device_vector<double> a(n), b(n);
// initialize a & b
...
// do the reduction
double result =
transform_reduce(make_zip_iterator(make_tuple(a.begin(), b.begin())),
make_zip_iterator(make_tuple(a.end(), b.end())),
weighted_absolute_difference(r),
-1.f,
maximum<double>());
// note that this solution does not set
// a[i] = r * a[i] + (1 - r) * b[i]
return 0;
}
请注意,我们不会在此解决方案中执行赋值a[i] = r * a[i] + (1 - r) * b[i]
,但使用thrust::transform
进行缩减后,这样做很简单。在两个仿函数中修改transform_reduce
的参数是不安全的。
答案 1 :(得分:0)
循环中的第二行:
errors=max(errors,fabs(a[i]-b[i]);
被称为减少。幸运的是,CUDA SDK中有减少示例代码 - 看看这个并将其用作算法的模板。
您可能希望将其拆分为两个单独的操作(可能作为两个单独的内核) - 一个用于并行部分(计算bp[]
值),另一个用于缩减(计算errors
)