]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/numeric/ublas/test/opencl/inner_prod_test.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / numeric / ublas / test / opencl / inner_prod_test.cpp
1 #include "inner_prod_test.hpp"
2 #include <boost/numeric/ublas/matrix.hpp>
3
4 int main()
5 {
6 ///testing row major int inner prod
7 bench_inner_prod<int, 10, 10> b1;
8
9 ///testing row major float inner prod
10 bench_inner_prod<float, 10, 10> b2;
11
12
13 ///testing row major double inner prod
14 bench_inner_prod<double, 10, 10> b3;
15
16
17 b1.run();
18 b2.run();
19 b3.run();
20
21 return 0;
22
23 }