summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/numeric/ublas/test/opencl/outer_prod_test.cpp
blob: e7195ecbd4f4b83b7edb46d2452d5965f4c11bb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "outer_prod_test.hpp"

int main()
{


  ///testing float outer prod
  bench_outer_prod<float, 10, 10> b1;


  ///testing double outer prod
  bench_outer_prod<double, 10, 10> b2;


  ///testing complex of float outer prod
  bench_outer_prod<std::complex<float>, 10, 10> b3;


  ///testing complex of double outer prod
  bench_outer_prod<std::complex<double>, 10, 10> b4;



  b1.run();
  b2.run();
  b3.run();
  b4.run();

  return 0;

}