// Copyright John Maddock 2015. // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifdef _MSC_VER # pragma warning (disable : 4224) #endif #include #include #include #include "../../test/table_type.hpp" #include "table_helper.hpp" #include "performance.hpp" #include typedef double T; #define SC_(x) static_cast(x) int main() { #if !defined(COMPILER_COMPARISON_TABLES) && !defined(TEST_GSL) && !defined(TEST_LIBSTDCXX) // we have nothing to compare against, just bail out: return 0; #endif #include "sph_bessel_data.ipp" add_data(sph_bessel_data); unsigned data_total = data.size(); screen_data([](const std::vector& v){ return boost::math::sph_bessel(static_cast(v[0]), v[1]); }, [](const std::vector& v){ return v[2]; }); #if defined(TEST_LIBSTDCXX) && !defined(COMPILER_COMPARISON_TABLES) screen_data([](const std::vector& v){ return std::tr1::sph_bessel(static_cast(v[0]), v[1]); }, [](const std::vector& v){ return v[2]; }); #endif #if defined(TEST_GSL) && !defined(COMPILER_COMPARISON_TABLES) screen_data([](const std::vector& v){ return gsl_sf_bessel_jl(static_cast(v[0]), v[1]); }, [](const std::vector& v){ return v[2]; }); #endif unsigned data_used = data.size(); std::string function = "sph_bessel[br](" + boost::lexical_cast(data_used) + "/" + boost::lexical_cast(data_total) + " tests selected)"; double time; time = exec_timed_test([](const std::vector& v){ return boost::math::sph_bessel(static_cast(v[0]), v[1]); }); std::cout << time << std::endl; report_execution_time(time, std::string("Library Comparison with ") + std::string(BOOST_COMPILER) + std::string(" on ") + BOOST_PLATFORM, function, "Boost"); // // Boost again, but with promotion to long double turned off: // #if !defined(COMPILER_COMPARISON_TABLES) if(sizeof(long double) != sizeof(double)) { time = exec_timed_test([](const std::vector& v){ return boost::math::sph_bessel(static_cast(v[0]), v[1], boost::math::policies::make_policy(boost::math::policies::promote_double())); }); std::cout << time << std::endl; report_execution_time(time, std::string("Library Comparison with ") + std::string(BOOST_COMPILER) + std::string(" on ") + BOOST_PLATFORM, function, "Boost[br](no internal promotion to long double)"); } #endif #if defined(TEST_LIBSTDCXX) && !defined(COMPILER_COMPARISON_TABLES) time = exec_timed_test([](const std::vector& v){ return std::tr1::sph_bessel(static_cast(v[0]), v[1]); }); std::cout << time << std::endl; report_execution_time(time, std::string("Library Comparison with ") + std::string(BOOST_COMPILER) + std::string(" on ") + BOOST_PLATFORM, function, "tr1/cmath"); #endif #if defined(TEST_GSL) && !defined(COMPILER_COMPARISON_TABLES) time = exec_timed_test([](const std::vector& v){ return gsl_sf_bessel_jl(static_cast(v[0]), v[1]); }); std::cout << time << std::endl; report_execution_time(time, std::string("Library Comparison with ") + std::string(BOOST_COMPILER) + std::string(" on ") + BOOST_PLATFORM, function, "gsl"); #endif return 0; }