Boost.Compute v0.1 Released - boost.devel GPGPUと並列プログラミングのためのライブラリ、Boost.Computeのv0.1がリリースされました。Boostに正式に入っているライブラリではありません。 リポジトリ ドキュメント #include <vector> #include <boost/compute/algorithm/copy.hpp> #include <boost/compute/container/vector.hpp> namespace compute = boost::compute; int main() { // ホスト環境に配列を作る int host_data[] = { 1, 3, 5, 7, 9 }; // デバイス上にvectorを作る compute::vector<int> device_vector(