//---------------------------------------------------------------------------// // 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 TestInnerProduct #include #include #include #include namespace bc = boost::compute; BOOST_AUTO_TEST_CASE(inner_product_int) { bc::device device = bc::system::default_device(); bc::context context(device); bc::command_queue queue(context, device); int data1[] = { 1, 2, 3, 4 }; bc::vector input1(data1, data1 + 4, context); int data2[] = { 10, 20, 30, 40 }; bc::vector input2(data2, data2 + 4, context); int product = bc::inner_product(input1.begin(), input1.end(), input2.begin(), 0, queue); BOOST_CHECK_EQUAL(product, 300); }