デバイスファンクタ内でCURANDとThrustを併用することはできますか?最小コードの例は次のとおりです。推力ファクタ内のCURANDの使用
#include <thrust/device_vector.h>
struct Move
{
Move() {}
using Position = thrust::tuple<double, double>;
__host__ __device__
Position operator()(Position p)
{
thrust::get<0>(p) += 1.0; // use CURAND to add a random N(0,1)
thrust::get<1>(p) += 1.0; // use CURAND to add a random N(0,1)
return p;
}
};
int main()
{
// Create vectors on device
thrust::device_vector<double> p1(10, 0.0);
thrust::device_vector<double> p2(10, 0.0);
// Create zip iterators
auto pBeg = thrust::make_zip_iterator(thrust::make_tuple(p1.begin(), p2.begin()));
auto pEnd = thrust::make_zip_iterator(thrust::make_tuple(p1.end(), p2.end() ));
// Move points in the vectors
thrust::transform(pBeg, pEnd, pBeg, Move());
// Print result (just for debug)
thrust::copy(p1.begin(), p1.end(), std::ostream_iterator<double>(std::cout, "\n"));
thrust::copy(p2.begin(), p2.end(), std::ostream_iterator<double>(std::cout, "\n"));
return 0;
}
演算子関数内で乱数を作成する正しい方法は何ですか?
ここで説明されているcuRANDデバイスAPIを使用する必要があります。http://docs.nvidia.com/cuda/curand/device-api-overview.html#device-api-overview –