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
6 #ifdef _MSC_VER
7 # pragma warning (disable : 4224)
8 #endif
9
10 #include <boost/math/special_functions/gamma.hpp>
11 #include <boost/array.hpp>
12 #include <boost/lexical_cast.hpp>
13 #include "../../test/table_type.hpp"
14 #include "table_helper.hpp"
15 #include "performance.hpp"
16 #include <iostream>
17
18 typedef double T;
19 #define SC_(x) static_cast<double>(x)
20
main()21 int main()
22 {
23 # include "igamma_med_data.ipp"
24 # include "igamma_small_data.ipp"
25 # include "igamma_big_data.ipp"
26 # include "igamma_int_data.ipp"
27
28 add_data(igamma_med_data);
29 add_data(igamma_small_data);
30 add_data(igamma_big_data);
31 add_data(igamma_int_data);
32
33 unsigned data_total = data.size();
34
35
36 std::cout << "Screening Boost data:\n";
37 screen_data([](const std::vector<double>& v){ return boost::math::gamma_q(v[0], v[1]); }, [](const std::vector<double>& v){ return v[3]; });
38
39
40 #if defined(TEST_GSL) && !defined(COMPILER_COMPARISON_TABLES)
41 std::cout << "Screening GSL data:\n";
42 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]; });
43 #endif
44 #if defined(TEST_RMATH) && !defined(COMPILER_COMPARISON_TABLES)
45 std::cout << "Screening GSL data:\n";
46 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]; });
47 #endif
48
49 unsigned data_used = data.size();
50 std::string function = "gamma_q[br](" + boost::lexical_cast<std::string>(data_used) + "/" + boost::lexical_cast<std::string>(data_total) + " tests selected)";
51 std::string function_short = "gamma_q";
52
53 double time;
54
55 time = exec_timed_test([](const std::vector<double>& v){ return boost::math::gamma_q(v[0], v[1]); });
56 std::cout << time << std::endl;
57 #if !defined(COMPILER_COMPARISON_TABLES) && (defined(TEST_GSL) || defined(TEST_RMATH))
58 report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, boost_name());
59 #endif
60 report_execution_time(time, std::string("Compiler Comparison on ") + std::string(platform_name()), function_short, compiler_name() + std::string("[br]") + boost_name());
61 //
62 // Boost again, but with promotion to long double turned off:
63 //
64 #if !defined(COMPILER_COMPARISON_TABLES)
65 if(sizeof(long double) != sizeof(double))
66 {
67 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>())); });
68 std::cout << time << std::endl;
69 #if !defined(COMPILER_COMPARISON_TABLES) && (defined(TEST_GSL) || defined(TEST_RMATH))
70 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>");
71 #endif
72 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>");
73 }
74 #endif
75
76
77 #if defined(TEST_GSL) && !defined(COMPILER_COMPARISON_TABLES)
78 time = exec_timed_test([](const std::vector<double>& v){ return gsl_sf_gamma_inc_Q(v[0], v[1]); });
79 std::cout << time << std::endl;
80 report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, "GSL " GSL_VERSION);
81 #endif
82 #if defined(TEST_RMATH) && !defined(COMPILER_COMPARISON_TABLES)
83 time = exec_timed_test([](const std::vector<double>& v){ return pgamma(v[1], v[0], 1.0, 0, 0); });
84 std::cout << time << std::endl;
85 report_execution_time(time, std::string("Library Comparison with ") + std::string(compiler_name()) + std::string(" on ") + platform_name(), function, "Rmath " R_VERSION_STRING);
86 #endif
87
88 return 0;
89 }
90
91