norm_test.cpp 243 B

12345678910111213141516171819202122
  1. #include "norm_test.hpp"
  2. #include <boost/numeric/ublas/matrix.hpp>
  3. int main()
  4. {
  5. ///testing float norm1
  6. bench_norm<float, 10, 10> b1;
  7. ///testing double norm1
  8. bench_norm<double, 10, 10> b2;
  9. b1.run();
  10. b2.run();
  11. return 0;
  12. }