test_beta.cpp 4.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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/beta.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. typedef double T;
  16. #define SC_(x) static_cast<double>(x)
  17. int main()
  18. {
  19. # include "beta_small_data.ipp"
  20. # include "beta_med_data.ipp"
  21. # include "beta_exp_data.ipp"
  22. add_data(beta_small_data);
  23. add_data(beta_med_data);
  24. add_data(beta_exp_data);
  25. unsigned data_total = data.size();
  26. screen_data([](const std::vector<double>& v){ return boost::math::beta(v[0], v[1]); }, [](const std::vector<double>& v){ return v[2]; });
  27. #if defined(TEST_LIBSTDCXX) && !defined(COMPILER_COMPARISON_TABLES)
  28. screen_data([](const std::vector<double>& v){ return std::tr1::beta(v[0], v[1]); }, [](const std::vector<double>& v){ return v[2]; });
  29. #endif
  30. #if defined(TEST_GSL) && !defined(COMPILER_COMPARISON_TABLES)
  31. screen_data([](const std::vector<double>& v){ return gsl_sf_beta(v[0], v[1]); }, [](const std::vector<double>& v){ return v[2]; });
  32. #endif
  33. #if defined(TEST_RMATH) && !defined(COMPILER_COMPARISON_TABLES)
  34. screen_data([](const std::vector<double>& v){ return beta(v[0], v[1]); }, [](const std::vector<double>& v){ return v[2]; });
  35. #endif
  36. unsigned data_used = data.size();
  37. std::string function = "beta[br](" + boost::lexical_cast<std::string>(data_used) + "/" + boost::lexical_cast<std::string>(data_total) + " tests selected)";
  38. std::string function_short = "beta";
  39. double time;
  40. time = exec_timed_test([](const std::vector<double>& v){ return boost::math::beta(v[0], v[1]); });
  41. std::cout << time << std::endl;
  42. #if !defined(COMPILER_COMPARISON_TABLES) && (defined(TEST_GSL) || defined(TEST_RMATH) || defined(TEST_LIBSTDCXX))
  43. report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, boost_name());
  44. #endif
  45. report_execution_time(time, std::string("Compiler Comparison on ") + std::string(platform_name()), function_short, compiler_name() + std::string("[br]") + boost_name());
  46. //
  47. // Boost again, but with promotion to long double turned off:
  48. //
  49. #if !defined(COMPILER_COMPARISON_TABLES)
  50. if(sizeof(long double) != sizeof(double))
  51. {
  52. time = exec_timed_test([](const std::vector<double>& v){ return boost::math::beta(v[0], v[1], boost::math::policies::make_policy(boost::math::policies::promote_double<false>())); });
  53. std::cout << time << std::endl;
  54. #if !defined(COMPILER_COMPARISON_TABLES) && (defined(TEST_GSL) || defined(TEST_RMATH) || defined(TEST_LIBSTDCXX))
  55. 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>");
  56. #endif
  57. 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>");
  58. }
  59. #endif
  60. #if defined(TEST_LIBSTDCXX) && !defined(COMPILER_COMPARISON_TABLES)
  61. time = exec_timed_test([](const std::vector<double>& v){ return std::tr1::beta(v[0], v[1]); });
  62. std::cout << time << std::endl;
  63. report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, "tr1/cmath");
  64. #endif
  65. #if defined(TEST_GSL) && !defined(COMPILER_COMPARISON_TABLES)
  66. time = exec_timed_test([](const std::vector<double>& v){ return gsl_sf_beta(v[0], v[1]); });
  67. std::cout << time << std::endl;
  68. report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, "GSL " GSL_VERSION);
  69. #endif
  70. #if defined(TEST_RMATH) && !defined(COMPILER_COMPARISON_TABLES)
  71. time = exec_timed_test([](const std::vector<double>& v){ return beta(v[0], v[1]); });
  72. std::cout << time << std::endl;
  73. report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, "Rmath " R_VERSION_STRING);
  74. #endif
  75. return 0;
  76. }