• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //---------------------------------------------------------------------------//
2 // Copyright (c) 2015 Jakub Szuppe <j.szuppe@gmail.com>
3 //
4 // Distributed under the Boost Software License, Version 1.0
5 // See accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt
7 //
8 // See http://boostorg.github.com/compute for more information.
9 //---------------------------------------------------------------------------//
10 
11 #include <iostream>
12 #include <algorithm>
13 #include <vector>
14 
15 #include <bolt/cl/inner_product.h>
16 #include <bolt/cl/copy.h>
17 #include <bolt/cl/device_vector.h>
18 
19 #include "perf.hpp"
20 
main(int argc,char * argv[])21 int main(int argc, char *argv[])
22 {
23     perf_parse_args(argc, argv);
24 
25     std::cout << "size: " << PERF_N << std::endl;
26 
27     bolt::cl::control ctrl = bolt::cl::control::getDefault();
28     ::cl::Device device = ctrl.getDevice();
29     std::cout << "device: " << device.getInfo<CL_DEVICE_NAME>() << std::endl;
30 
31     // create host vectors
32     std::vector<int> host_x = generate_random_vector<int>(PERF_N);
33     std::vector<int> host_y = generate_random_vector<int>(PERF_N);
34 
35     // create device vectors
36     bolt::cl::device_vector<int> device_x(PERF_N);
37     bolt::cl::device_vector<int> device_y(PERF_N);
38 
39     // transfer data to the device
40     bolt::cl::copy(host_x.begin(), host_x.end(), device_x.begin());
41     bolt::cl::copy(host_y.begin(), host_y.end(), device_y.begin());
42 
43     int product = 0;
44     perf_timer t;
45     for(size_t trial = 0; trial < PERF_TRIALS; trial++){
46         t.start();
47         product = bolt::cl::inner_product(
48             device_x.begin(), device_x.end(), device_y.begin(), 0
49         );
50         t.stop();
51     }
52     std::cout << "time: " << t.min_time() / 1e6 << " ms" << std::endl;
53     std::cout << "product: " << product << std::endl;
54 
55     return 0;
56 }
57