Imported Upstream version 1.64.0
[platform/upstream/boost.git] / libs / fiber / performance / fiber / skynet_async.cpp
1
2 //          Copyright Oliver Kowalke 2015.
3 // Distributed under the Boost Software License, Version 1.0.
4 //    (See accompanying file LICENSE_1_0.txt or copy at
5 //          http://www.boost.org/LICENSE_1_0.txt)
6
7 // based on https://github.com/atemerev/skynet from Alexander Temerev 
8
9 #include <algorithm>
10 #include <cassert>
11 #include <chrono>
12 #include <condition_variable>
13 #include <cstddef>
14 #include <cstdint>
15 #include <cstdlib>
16 #include <queue>
17 #include <iostream>
18 #include <memory>
19 #include <mutex>
20 #include <numeric>
21 #include <random>
22 #include <sstream>
23 #include <vector>
24
25 #include <boost/fiber/all.hpp>
26
27 #include "barrier.hpp"
28 #include "bind/bind_processor.hpp"
29
30 using clock_type = std::chrono::steady_clock;
31 using duration_type = clock_type::duration;
32 using time_point_type = clock_type::time_point;
33 using channel_type = boost::fibers::buffered_channel< std::uint64_t >;
34 using allocator_type = boost::fibers::fixedsize_stack;
35 using lock_type = std::unique_lock< std::mutex >;
36
37 static bool done = false;
38 static std::mutex mtx{};
39 static boost::fibers::condition_variable_any cnd{};
40
41 // microbenchmark
42 std::uint64_t skynet(allocator_type& salloc, std::uint64_t num, std::uint64_t size, std::uint64_t div)
43 {
44     if ( size != 1){
45         size /= div;
46
47         std::vector<boost::fibers::future<std::uint64_t> > results;
48         results.reserve( div);
49
50         for ( std::uint64_t i = 0; i != div; ++i) {
51             std::uint64_t sub_num = num + i * size;
52             results.emplace_back(boost::fibers::async(
53                   boost::fibers::launch::dispatch
54                 , std::allocator_arg, salloc
55                 , skynet
56                 , std::ref( salloc), sub_num, size, div));
57         }
58
59         std::uint64_t sum = 0;
60         for ( auto& f : results)
61             sum += f.get();
62             
63         return sum;
64     }
65
66     return num;
67 }
68
69 void thread( unsigned int max_idx, unsigned int idx, barrier * b) {
70     bind_to_processor( idx);
71     boost::fibers::use_scheduling_algorithm< boost::fibers::algo::work_stealing >( max_idx, idx);
72     b->wait();
73     lock_type lk( mtx);
74     cnd.wait(lk, [](){ return done; });
75     BOOST_ASSERT( done);
76 }
77
78 int main() {
79     try {
80         unsigned int cpus = std::thread::hardware_concurrency();
81         barrier b( cpus);
82         unsigned int max_idx = cpus - 1;
83         boost::fibers::use_scheduling_algorithm< boost::fibers::algo::work_stealing >( max_idx, max_idx);
84         bind_to_processor( max_idx);
85         std::size_t size{ 1000000 };
86         std::size_t div{ 10 };
87         std::vector< std::thread > threads;
88         for ( unsigned int idx = 0; idx < max_idx; ++idx) {
89             threads.push_back( std::thread( thread, max_idx, idx, & b) );
90         };
91         allocator_type salloc{ allocator_type::traits_type::page_size() };
92         std::uint64_t result{ 0 };
93         duration_type duration{ duration_type::zero() };
94         b.wait();
95         time_point_type start{ clock_type::now() };
96         result = skynet( salloc, 0, size, div);
97         duration = clock_type::now() - start;
98         std::cout << "Result: " << result << " in " << duration.count() / 1000000 << " ms" << std::endl;
99         lock_type lk( mtx);
100         done = true;
101         lk.unlock();
102         cnd.notify_all();
103         for ( std::thread & t : threads) {
104             t.join();
105         }
106         std::cout << "done." << std::endl;
107         return EXIT_SUCCESS;
108     } catch ( std::exception const& e) {
109         std::cerr << "exception: " << e.what() << std::endl;
110     } catch (...) {
111         std::cerr << "unhandled exception" << std::endl;
112     }
113         return EXIT_FAILURE;
114 }