1 #include "norm2_test.hpp" 2 #include <boost/numeric/ublas/matrix.hpp> 3 main()4int main() 5 { 6 7 ///testing float norm2 8 bench_norm2<float, 10, 10> b1; 9 10 11 ///testing double norm2 12 bench_norm2<double, 10, 10> b2; 13 14 15 ///testing float norm2 16 bench_norm2<std::complex<float>, 10, 10> b3; 17 18 19 ///testing double norm2 20 bench_norm2<std::complex<double>, 10, 10> b4; 21 22 23 24 b1.run(); 25 b2.run(); 26 b3.run(); 27 b4.run(); 28 29 30 return 0; 31 32 }