1 #include "norm_test.hpp" 2 #include <boost/numeric/ublas/matrix.hpp> 3 main()4 int main() 5 { 6 7 ///testing float norm1 8 bench_norm<float, 10, 10> b1; 9 10 11 ///testing double norm1 12 bench_norm<double, 10, 10> b2; 13 14 15 16 b1.run(); 17 b2.run(); 18 19 20 return 0; 21 22 }