2
0
mirror of https://github.com/boostorg/compute.git synced 2026-01-23 05:22:15 +00:00
Files
compute/example/transform_sqrt.cpp
2014-01-06 19:07:30 -08:00

46 lines
1.4 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/algorithm/transform.hpp>
#include <boost/compute/container/vector.hpp>
#include <boost/compute/functional/math.hpp>
namespace compute = boost::compute;
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
compute::vector<float> device_vector = host_vector;
// calculate sqrt of each element in-place
compute::transform(device_vector.begin(),
device_vector.end(),
device_vector.begin(),
compute::sqrt<float>());
// copy values back to the host
compute::copy(device_vector.begin(),
device_vector.end(),
host_vector.begin());
return 0;
}
//]