2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-01-23 18:12:14 +00:00
Files
ublas/test/opencl/norm_test.cpp
2018-10-29 08:38:37 -04:00

22 lines
243 B
C++

#include "norm_test.hpp"
#include <boost/numeric/ublas/matrix.hpp>
int main()
{
///testing float norm1
bench_norm<float, 10, 10> b1;
///testing double norm1
bench_norm<double, 10, 10> b2;
b1.run();
b2.run();
return 0;
}