test_erfc.cpp 4.4 KB

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