2
0
mirror of https://github.com/boostorg/compute.git synced 2026-01-27 06:42:19 +00:00
Files
compute/example/transform_sqrt.cpp
2013-03-02 15:14:17 -05:00

41 lines
1.3 KiB
C++

//---------------------------------------------------------------------------//
// Copyright (c) 2013 Kyle Lutz <kyle.r.lutz@gmail.com>
//
// Distributed under the Boost Software License, Version 1.0
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
//
// See http://kylelutz.github.com/compute for more information.
//---------------------------------------------------------------------------//
//[transform_sqrt_example
#include <vector>
#include <algorithm>
#include <boost/compute.hpp>
int main()
{
// generate random data on the host
std::vector<float> host_vector(10000);
std::generate(host_vector.begin(), host_vector.end(), rand);
// create a vector on the device and transfer data from the host
boost::compute::vector<float> device_vector = host_vector;
// calculate sqrt of each element in-place
boost::compute::transform(device_vector.begin(),
device_vector.end(),
device_vector.begin(),
boost::compute::sqrt<float>());
// copy values back to the host
boost::compute::copy(device_vector.begin(),
device_vector.end(),
host_vector.begin());
return 0;
}
//]