//---------------------------------------------------------------------------// // Copyright (c) 2013 Kyle Lutz // // 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. //---------------------------------------------------------------------------// #define BOOST_TEST_MODULE TestTransformReduce #include #include #include #include #include #include "context_setup.hpp" namespace bc = boost::compute; BOOST_AUTO_TEST_CASE(sum_abs_int) { int data[] = { 1, -2, -3, -4, 5 }; bc::vector vector(data, data + 5, context); int sum = bc::transform_reduce(vector.begin(), vector.end(), bc::abs(), 0, bc::plus(), queue); BOOST_CHECK_EQUAL(sum, 15); } BOOST_AUTO_TEST_CASE(multiply_vector_length) { float data[] = { 2.0f, 0.0f, 0.0f, 0.0f, 0.0f, 3.0f, 0.0f, 0.0f, 0.0f, 0.0f, 4.0f, 0.0f }; bc::vector vector(reinterpret_cast(data), reinterpret_cast(data) + 3, context); float product = bc::transform_reduce(vector.begin(), vector.end(), bc::length(), 1.0f, bc::multiplies(), queue); BOOST_CHECK_CLOSE(product, 24.0f, 1e-4f); } BOOST_AUTO_TEST_SUITE_END()