/*============================================================================= Copyright (c) 2001-2006 Joel de Guzman Use, modification and distribution is 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) ==============================================================================*/ #include "measure.hpp" #define FUSION_MAX_LIST_SIZE 30 #define FUSION_MAX_VECTOR_SIZE 30 #include #include #include #include #include #include #include #ifdef _MSC_VER // inline aggressively # pragma inline_recursion(on) // turn on inline recursion # pragma inline_depth(255) // max inline depth #endif namespace { struct poly_add { template struct result { typedef Lhs type; }; template Lhs operator()(const Lhs& lhs, const Rhs& rhs) const { return lhs + rhs; } }; // Our Accumulator function template struct accumulator { accumulator() : sum() {} template void operator()(Sequence const& seq) { this->sum += boost::fusion::accumulate(seq, 0, poly_add()); } T sum; }; template void check(T const& seq, char const* info) { test::measure >(seq, 1); std::cout << info << test::live_code << std::endl; } template void measure(T const& seq, char const* info, long const repeats) { std::cout << info << test::measure >(seq, repeats) << std::endl; } } // We'll initialize the sequences from numeric strings that // pass through boost::lexical_cast to make sure that the // compiler is not optimizing by replacing the computation // with constant results computed at compile time. #define INIT(z, n, text) boost::lexical_cast(BOOST_PP_STRINGIZE(n)) int main() { using namespace boost::fusion; std::cout.setf(std::ios::scientific); vector< int, int, int > vsmall(BOOST_PP_ENUM(3, INIT, _)); list< int, int, int > lsmall(BOOST_PP_ENUM(3, INIT, _)); vector< int, int, int, int, int, int, int, int, int, int > vmedium(BOOST_PP_ENUM(10, INIT, _)); list< int, int, int, int, int, int, int, int, int, int > lmedium(BOOST_PP_ENUM(10, INIT, _)); vector< int, int, int, int, int, int, int, int, int, int , int, int, int, int, int, int, int, int, int, int , int, int, int, int, int, int, int, int, int, int > vbig(BOOST_PP_ENUM(30, INIT, _)); list< int, int, int, int, int, int, int, int, int, int , int, int, int, int, int, int, int, int, int, int , int, int, int, int, int, int, int, int, int, int > lbig(BOOST_PP_ENUM(30, INIT, _)); // first decide how many repetitions to measure long repeats = 100; double measured = 0; while (measured < 2.0 && repeats <= 10000000) { repeats *= 10; boost::timer time; test::hammer >(vsmall, repeats); test::hammer >(lsmall, repeats); test::hammer >(vmedium, repeats); test::hammer >(lmedium, repeats); test::hammer >(vbig, repeats); test::hammer >(lbig, repeats); measured = time.elapsed(); } check(vsmall, "small vector accumulated result: "); check(lsmall, "small list accumulated result: "); check(vmedium, "medium vector accumulated result: "); check(lmedium, "medium list accumulated result: "); check(vbig, "big vector accumulated result: "); check(lbig, "big list accumulated result: "); measure(vsmall, "small vector time: ", repeats); measure(lsmall, "small list time: ", repeats); measure(vmedium, "medium vector time: ", repeats); measure(lmedium, "medium list time: ", repeats); measure(vbig, "big vector time: ", repeats); measure(lbig, "big list time: ", repeats); // This is ultimately responsible for preventing all the test code // from being optimized away. Change this to return 0 and you // unplug the whole test's life support system. return test::live_code != 0; }