//---------------------------------------------------------------------------// // 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 #include "context_setup.hpp" namespace compute = boost::compute; BOOST_AUTO_TEST_CASE(sum_abs_int) { int data[] = { 1, -2, -3, -4, 5 }; compute::vector vector(data, data + 5, context); int sum; compute::transform_reduce( vector.begin(), vector.end(), &sum, compute::abs(), compute::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 }; compute::vector vector( reinterpret_cast(data), reinterpret_cast(data) + 3, context ); float product; compute::transform_reduce( vector.begin(), vector.end(), &product, compute::length(), compute::multiplies(), queue ); BOOST_CHECK_CLOSE(product, 24.0f, 1e-4f); } BOOST_AUTO_TEST_CASE(mean_and_std_dev) { using compute::lambda::_1; using compute::lambda::pow; float data[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; compute::vector vector(10, context); compute::copy_n(data, 10, vector.begin(), queue); float sum; compute::reduce( vector.begin(), vector.end(), &sum, compute::plus(), queue ); float mean = sum / vector.size(); BOOST_CHECK_CLOSE(mean, 5.5f, 1e-4); compute::transform_reduce( vector.begin(), vector.end(), &sum, pow(_1 - mean, 2), compute::plus(), queue ); float variance = sum / vector.size(); BOOST_CHECK_CLOSE(variance, 8.25f, 1e-4); float std_dev = std::sqrt(variance); BOOST_CHECK_CLOSE(std_dev, 2.8722813232690143, 1e-4); } BOOST_AUTO_TEST_SUITE_END()