2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-01 08:32:08 +00:00
Files
fiber/performance/thread/overhead_join_multiple.cpp
2014-06-29 12:54:39 +02:00

77 lines
2.1 KiB
C++

// Copyright Oliver Kowalke 2009.
// Distributed under 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 <cstdlib>
#include <iostream>
#include <stdexcept>
#include <string>
#include <boost/chrono.hpp>
#include <boost/cstdint.hpp>
#include <boost/preprocessor/cat.hpp>
#include <boost/preprocessor/repetition/repeat_from_to.hpp>
#include <boost/program_options.hpp>
#include <boost/thread.hpp>
#include "../bind_processor.hpp"
#include "../clock.hpp"
#define JOBS 100
#define CREATE(z, n, x) boost::thread BOOST_PP_CAT(t,n) ( worker);
#define JOIN(z, n, x) BOOST_PP_CAT(t,n).join();
void worker() {}
duration_type measure( duration_type overhead)
{
time_point_type start( clock_type::now() );
BOOST_PP_REPEAT_FROM_TO(0, JOBS, CREATE, x)
BOOST_PP_REPEAT_FROM_TO(0, JOBS, JOIN, x)
duration_type total = clock_type::now() - start;
total -= overhead_clock(); // overhead of measurement
total /= JOBS; // loops
return total;
}
int main( int argc, char * argv[])
{
try
{
boost::program_options::options_description desc("allowed options");
desc.add_options()
("help", "help message");
boost::program_options::variables_map vm;
boost::program_options::store(
boost::program_options::parse_command_line(
argc,
argv,
desc),
vm);
boost::program_options::notify( vm);
if ( vm.count("help") ) {
std::cout << desc << std::endl;
return EXIT_SUCCESS;
}
duration_type overhead = overhead_clock();
std::cout << "overhead " << overhead.count() << " nano seconds" << std::endl;
boost::uint64_t res = measure( overhead).count();
std::cout << "average of " << res << " nano seconds" << std::endl;
return EXIT_SUCCESS;
}
catch ( std::exception const& e)
{ std::cerr << "exception: " << e.what() << std::endl; }
catch (...)
{ std::cerr << "unhandled exception" << std::endl; }
return EXIT_FAILURE;
}