test_ellint_2c.cpp 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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_2.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. static const boost::array<boost::array<T, 2>, 10> data2 = { {
  18. { { SC_(-1.0), SC_(1.0) } },
  19. { { SC_(0.0), SC_(1.5707963267948966192313216916397514420985846996876) } },
  20. { { T(100) / 1024, SC_(1.5670445330545086723323795143598956428788609133377) } },
  21. { { T(200) / 1024, SC_(1.5557071588766556854463404816624361127847775545087) } },
  22. { { T(300) / 1024, SC_(1.5365278991162754883035625322482669608948678755743) } },
  23. { { T(400) / 1024, SC_(1.5090417763083482272165682786143770446401437564021) } },
  24. { { SC_(-0.5), SC_(1.4674622093394271554597952669909161360253617523272) } },
  25. { { T(-600) / 1024, SC_(1.4257538571071297192428217218834579920545946473778) } },
  26. { { T(-800) / 1024, SC_(1.2927868476159125056958680222998765985004489572909) } },
  27. { { T(-900) / 1024, SC_(1.1966864890248739524112920627353824133420353430982) } },
  28. } };
  29. int main()
  30. {
  31. #include "ellint_e_data.ipp"
  32. add_data(data2);
  33. add_data(ellint_e_data);
  34. unsigned data_total = data.size();
  35. screen_data([](const std::vector<double>& v){ return boost::math::ellint_2(v[0]); }, [](const std::vector<double>& v){ return v[1]; });
  36. #if defined(TEST_LIBSTDCXX) && !defined(COMPILER_COMPARISON_TABLES)
  37. screen_data([](const std::vector<double>& v){ return std::tr1::comp_ellint_2(v[0]); }, [](const std::vector<double>& v){ return v[1]; });
  38. #endif
  39. #if defined(TEST_GSL) && !defined(COMPILER_COMPARISON_TABLES)
  40. screen_data([](const std::vector<double>& v){ return gsl_sf_ellint_Ecomp(v[0], GSL_PREC_DOUBLE); }, [](const std::vector<double>& v){ return v[1]; });
  41. #endif
  42. unsigned data_used = data.size();
  43. std::string function = "ellint_2 (complete)[br](" + boost::lexical_cast<std::string>(data_used) + "/" + boost::lexical_cast<std::string>(data_total) + " tests selected)";
  44. std::string function_short = "ellint_2 (complete)";
  45. double time;
  46. time = exec_timed_test([](const std::vector<double>& v){ return boost::math::ellint_2(v[0]); });
  47. std::cout << time << std::endl;
  48. #if !defined(COMPILER_COMPARISON_TABLES) && (defined(TEST_GSL) || defined(TEST_RMATH) || defined(TEST_LIBSTDCXX))
  49. report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, boost_name());
  50. #endif
  51. report_execution_time(time, std::string("Compiler Comparison on ") + std::string(platform_name()), function_short, compiler_name() + std::string("[br]") + boost_name());
  52. //
  53. // Boost again, but with promotion to long double turned off:
  54. //
  55. #if !defined(COMPILER_COMPARISON_TABLES)
  56. if(sizeof(long double) != sizeof(double))
  57. {
  58. time = exec_timed_test([](const std::vector<double>& v){ return boost::math::ellint_2(v[0], boost::math::policies::make_policy(boost::math::policies::promote_double<false>())); });
  59. std::cout << time << std::endl;
  60. #if !defined(COMPILER_COMPARISON_TABLES) && (defined(TEST_GSL) || defined(TEST_RMATH) || defined(TEST_LIBSTDCXX))
  61. 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>");
  62. #endif
  63. 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>");
  64. }
  65. #endif
  66. #if defined(TEST_LIBSTDCXX) && !defined(COMPILER_COMPARISON_TABLES)
  67. time = exec_timed_test([](const std::vector<double>& v){ return std::tr1::comp_ellint_2(v[0]); });
  68. std::cout << time << std::endl;
  69. report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, "tr1/cmath");
  70. #endif
  71. #if defined(TEST_GSL) && !defined(COMPILER_COMPARISON_TABLES)
  72. time = exec_timed_test([](const std::vector<double>& v){ return gsl_sf_ellint_Ecomp(v[0], GSL_PREC_DOUBLE); });
  73. std::cout << time << std::endl;
  74. report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, "GSL " GSL_VERSION);
  75. #endif
  76. return 0;
  77. }