test_zeta.cpp 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. // Copyright John Maddock 2015.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #ifdef _MSC_VER
  6. # pragma warning (disable : 4224)
  7. #endif
  8. #include <boost/math/special_functions/zeta.hpp>
  9. #include <boost/array.hpp>
  10. #include <boost/lexical_cast.hpp>
  11. #include "../../test/table_type.hpp"
  12. #include "table_helper.hpp"
  13. #include "performance.hpp"
  14. #include <iostream>
  15. int main()
  16. {
  17. typedef double T;
  18. #define SC_(x) static_cast<double>(x)
  19. #include "zeta_data.ipp"
  20. #include "zeta_neg_data.ipp"
  21. #include "zeta_1_up_data.ipp"
  22. #include "zeta_1_below_data.ipp"
  23. add_data(zeta_data);
  24. add_data(zeta_neg_data);
  25. add_data(zeta_1_up_data);
  26. add_data(zeta_1_below_data);
  27. unsigned data_total = data.size();
  28. screen_data([](const std::vector<double>& v){ return boost::math::zeta(v[0]); }, [](const std::vector<double>& v){ return v[1]; });
  29. #if defined(TEST_LIBSTDCXX) && !defined(COMPILER_COMPARISON_TABLES)
  30. screen_data([](const std::vector<double>& v){ return std::tr1::riemann_zeta(v[0]); }, [](const std::vector<double>& v){ return v[1]; });
  31. #endif
  32. #if defined(TEST_GSL) && !defined(COMPILER_COMPARISON_TABLES)
  33. screen_data([](const std::vector<double>& v){ return gsl_sf_zeta(v[0]); }, [](const std::vector<double>& v){ return v[1]; });
  34. #endif
  35. unsigned data_used = data.size();
  36. std::string function = "zeta[br](" + boost::lexical_cast<std::string>(data_used) + "/" + boost::lexical_cast<std::string>(data_total) + " tests selected)";
  37. std::string function_short = "zeta";
  38. double time = exec_timed_test([](const std::vector<double>& v){ return boost::math::zeta(v[0]); });
  39. std::cout << time << std::endl;
  40. #if !defined(COMPILER_COMPARISON_TABLES) && (defined(TEST_GSL) || defined(TEST_RMATH) || defined(TEST_LIBSTDCXX))
  41. report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, boost_name());
  42. #endif
  43. report_execution_time(time, std::string("Compiler Comparison on ") + std::string(platform_name()), function_short, compiler_name() + std::string("[br]") + boost_name());
  44. //
  45. // Boost again, but with promotion to long double turned off:
  46. //
  47. #if !defined(COMPILER_COMPARISON_TABLES)
  48. if(sizeof(long double) != sizeof(double))
  49. {
  50. double time = exec_timed_test([](const std::vector<double>& v){ return boost::math::zeta(v[0], boost::math::policies::make_policy(boost::math::policies::promote_double<false>())); });
  51. std::cout << time << std::endl;
  52. #if !defined(COMPILER_COMPARISON_TABLES) && (defined(TEST_GSL) || defined(TEST_RMATH) || defined(TEST_LIBSTDCXX))
  53. report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, boost_name() + "[br]promote_double<false>");
  54. #endif
  55. report_execution_time(time, std::string("Compiler Comparison on ") + std::string(platform_name()), function_short, compiler_name() + std::string("[br]") + boost_name() + "[br]promote_double<false>");
  56. }
  57. #endif
  58. #if defined(TEST_LIBSTDCXX) && !defined(COMPILER_COMPARISON_TABLES)
  59. time = exec_timed_test([](const std::vector<double>& v){ return std::tr1::riemann_zeta(v[0]); });
  60. std::cout << time << std::endl;
  61. report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, "tr1/cmath");
  62. #endif
  63. #if defined(TEST_GSL) && !defined(COMPILER_COMPARISON_TABLES)
  64. time = exec_timed_test([](const std::vector<double>& v){ return gsl_sf_zeta(v[0]); });
  65. std::cout << time << std::endl;
  66. report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, "GSL " GSL_VERSION);
  67. #endif
  68. return 0;
  69. }