test_ellint_rj.cpp 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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/ellint_rj.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 "ellint_rj_data.ipp"
  20. #include "ellint_rj_e4.ipp"
  21. #include "ellint_rj_e3.ipp"
  22. #include "ellint_rj_e2.ipp"
  23. #include "ellint_rj_zp.ipp"
  24. add_data(ellint_rj_data);
  25. add_data(ellint_rj_e4);
  26. add_data(ellint_rj_e3);
  27. add_data(ellint_rj_e2);
  28. add_data(ellint_rj_zp);
  29. unsigned data_total = data.size();
  30. screen_data([](const std::vector<double>& v){ return boost::math::ellint_rj(v[0], v[1], v[2], v[3]); }, [](const std::vector<double>& v){ return v[4]; });
  31. #if defined(TEST_GSL) && !defined(COMPILER_COMPARISON_TABLES)
  32. screen_data([](const std::vector<double>& v){ return gsl_sf_ellint_RJ(v[0], v[1], v[2], v[3], GSL_PREC_DOUBLE); }, [](const std::vector<double>& v){ return v[4]; });
  33. #endif
  34. unsigned data_used = data.size();
  35. std::string function = "ellint_rj[br](" + boost::lexical_cast<std::string>(data_used) + "/" + boost::lexical_cast<std::string>(data_total) + " tests selected)";
  36. std::string function_short = "ellint_rj";
  37. double time;
  38. time = exec_timed_test([](const std::vector<double>& v){ return boost::math::ellint_rj(v[0], v[1], v[2], v[3]); });
  39. std::cout << time << std::endl;
  40. #if !defined(COMPILER_COMPARISON_TABLES) && (defined(TEST_GSL) || defined(TEST_RMATH))
  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. time = exec_timed_test([](const std::vector<double>& v){ return boost::math::ellint_rj(v[0], v[1], v[2], v[3], 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))
  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_GSL) && !defined(COMPILER_COMPARISON_TABLES)
  59. time = exec_timed_test([](const std::vector<double>& v){ return gsl_sf_ellint_RJ(v[0], v[1], v[2], v[3], GSL_PREC_DOUBLE); });
  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, "GSL " GSL_VERSION);
  62. #endif
  63. return 0;
  64. }