test_legendre.cpp 3.8 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/legendre.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 "legendre_p.ipp"
  20. # include "legendre_p_large.ipp"
  21. add_data(legendre_p);
  22. add_data(legendre_p_large);
  23. unsigned data_total = data.size();
  24. screen_data([](const std::vector<double>& v){ return boost::math::legendre_p(v[0], v[1]); }, [](const std::vector<double>& v){ return v[2]; });
  25. #if defined(TEST_LIBSTDCXX) && !defined(COMPILER_COMPARISON_TABLES)
  26. screen_data([](const std::vector<double>& v){ return std::tr1::legendre(v[0], v[1]); }, [](const std::vector<double>& v){ return v[2]; });
  27. #endif
  28. #if defined(TEST_GSL) && !defined(COMPILER_COMPARISON_TABLES)
  29. screen_data([](const std::vector<double>& v){ return gsl_sf_legendre_Pl(v[0], v[1]); }, [](const std::vector<double>& v){ return v[2]; });
  30. #endif
  31. unsigned data_used = data.size();
  32. std::string function = "legendre[br](" + boost::lexical_cast<std::string>(data_used) + "/" + boost::lexical_cast<std::string>(data_total) + " tests selected)";
  33. std::string function_short = "legendre";
  34. double time;
  35. time = exec_timed_test([](const std::vector<double>& v){ return boost::math::legendre_p(v[0], v[1]); });
  36. std::cout << time << std::endl;
  37. #if !defined(COMPILER_COMPARISON_TABLES) && (defined(TEST_GSL) || defined(TEST_RMATH) || defined(TEST_LIBSTDCXX))
  38. report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, boost_name());
  39. #endif
  40. report_execution_time(time, std::string("Compiler Comparison on ") + std::string(platform_name()), function_short, compiler_name() + std::string("[br]") + boost_name());
  41. //
  42. // Boost again, but with promotion to long double turned off:
  43. //
  44. #if !defined(COMPILER_COMPARISON_TABLES)
  45. if(sizeof(long double) != sizeof(double))
  46. {
  47. time = exec_timed_test([](const std::vector<double>& v){ return boost::math::legendre_p(v[0], v[1], boost::math::policies::make_policy(boost::math::policies::promote_double<false>())); });
  48. std::cout << time << std::endl;
  49. #if !defined(COMPILER_COMPARISON_TABLES) && (defined(TEST_GSL) || defined(TEST_RMATH) || defined(TEST_LIBSTDCXX))
  50. 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>");
  51. #endif
  52. 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>");
  53. }
  54. #endif
  55. #if defined(TEST_LIBSTDCXX) && !defined(COMPILER_COMPARISON_TABLES)
  56. time = exec_timed_test([](const std::vector<double>& v){ return std::tr1::legendre(v[0], v[1]); });
  57. std::cout << time << std::endl;
  58. report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, "tr1/cmath");
  59. #endif
  60. #if defined(TEST_GSL) && !defined(COMPILER_COMPARISON_TABLES)
  61. time = exec_timed_test([](const std::vector<double>& v){ return gsl_sf_legendre_Pl(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, "GSL " GSL_VERSION);
  64. #endif
  65. return 0;
  66. }