test_gamma_q.cpp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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/gamma.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 "igamma_med_data.ipp"
  20. # include "igamma_small_data.ipp"
  21. # include "igamma_big_data.ipp"
  22. # include "igamma_int_data.ipp"
  23. add_data(igamma_med_data);
  24. add_data(igamma_small_data);
  25. add_data(igamma_big_data);
  26. add_data(igamma_int_data);
  27. unsigned data_total = data.size();
  28. std::cout << "Screening Boost data:\n";
  29. screen_data([](const std::vector<double>& v){ return boost::math::gamma_q(v[0], v[1]); }, [](const std::vector<double>& v){ return v[3]; });
  30. #if defined(TEST_GSL) && !defined(COMPILER_COMPARISON_TABLES)
  31. std::cout << "Screening GSL data:\n";
  32. screen_data([](const std::vector<double>& v){ return gsl_sf_gamma_inc_Q(v[0], v[1]); }, [](const std::vector<double>& v){ return v[3]; });
  33. #endif
  34. #if defined(TEST_RMATH) && !defined(COMPILER_COMPARISON_TABLES)
  35. std::cout << "Screening GSL data:\n";
  36. screen_data([](const std::vector<double>& v){ return pgamma(v[1], v[0], 1.0, 0, 0); }, [](const std::vector<double>& v){ return v[3]; });
  37. #endif
  38. unsigned data_used = data.size();
  39. std::string function = "gamma_q[br](" + boost::lexical_cast<std::string>(data_used) + "/" + boost::lexical_cast<std::string>(data_total) + " tests selected)";
  40. std::string function_short = "gamma_q";
  41. double time;
  42. time = exec_timed_test([](const std::vector<double>& v){ return boost::math::gamma_q(v[0], v[1]); });
  43. std::cout << time << std::endl;
  44. #if !defined(COMPILER_COMPARISON_TABLES) && (defined(TEST_GSL) || defined(TEST_RMATH))
  45. report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, boost_name());
  46. #endif
  47. report_execution_time(time, std::string("Compiler Comparison on ") + std::string(platform_name()), function_short, compiler_name() + std::string("[br]") + boost_name());
  48. //
  49. // Boost again, but with promotion to long double turned off:
  50. //
  51. #if !defined(COMPILER_COMPARISON_TABLES)
  52. if(sizeof(long double) != sizeof(double))
  53. {
  54. time = exec_timed_test([](const std::vector<double>& v){ return boost::math::gamma_q(v[0], v[1], boost::math::policies::make_policy(boost::math::policies::promote_double<false>())); });
  55. std::cout << time << std::endl;
  56. #if !defined(COMPILER_COMPARISON_TABLES) && (defined(TEST_GSL) || defined(TEST_RMATH))
  57. 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>");
  58. #endif
  59. 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>");
  60. }
  61. #endif
  62. #if defined(TEST_GSL) && !defined(COMPILER_COMPARISON_TABLES)
  63. time = exec_timed_test([](const std::vector<double>& v){ return gsl_sf_gamma_inc_Q(v[0], v[1]); });
  64. std::cout << time << std::endl;
  65. report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, "GSL " GSL_VERSION);
  66. #endif
  67. #if defined(TEST_RMATH) && !defined(COMPILER_COMPARISON_TABLES)
  68. time = exec_timed_test([](const std::vector<double>& v){ return pgamma(v[1], v[0], 1.0, 0, 0); });
  69. std::cout << time << std::endl;
  70. report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, "Rmath " R_VERSION_STRING);
  71. #endif
  72. return 0;
  73. }