-
Notifications
You must be signed in to change notification settings - Fork 73
/
sort_4.cpp
77 lines (67 loc) · 1.96 KB
/
sort_4.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#include <experimental/continuation>
#include <experimental/executor>
#include <experimental/future>
#include <algorithm>
#include <chrono>
#include <iostream>
#include <random>
#include <string>
using std::experimental::continuation;
using std::experimental::copost;
using std::experimental::chain;
using std::experimental::use_future;
template <class Iterator, class CompletionToken>
auto parallel_sort(Iterator begin, Iterator end, CompletionToken&& token)
{
const std::size_t n = end - begin;
if (n <= 32768)
{
return dispatch(
[=]{ std::sort(begin, end); },
std::forward<CompletionToken>(token));
}
else
{
return copost(
[=](continuation<> c)
{
return parallel_sort(begin, begin + (n / 2), std::move(c));
},
[=](continuation<> c)
{
return parallel_sort(begin + (n / 2), end, std::move(c));
},
chain(
[=]{ std::inplace_merge(begin, begin + (n / 2), end); },
std::forward<CompletionToken>(token)));
}
}
int main(int argc, char* argv[])
{
const std::string parallel("parallel");
const std::string serial("serial");
if (!(argc == 3 && (argv[1] != parallel || argv[1] != serial)))
{
std::cerr << "Usage: `sort parallel <size>' or `sort serial <size>'" << std::endl;
return 1;
}
std::vector<double> vec(std::atoll(argv[2]));
for (std::size_t i = 0; i < vec.size(); ++i)
vec[i] = i;
std::random_device rd;
std::mt19937 g(rd());
std::shuffle(vec.begin(), vec.end(), g);
std::chrono::steady_clock::time_point start = std::chrono::steady_clock::now();
if (argv[1] == parallel)
{
parallel_sort(vec.begin(), vec.end(), use_future).get();
}
else
{
std::sort(vec.begin(), vec.end());
}
std::chrono::steady_clock::duration elapsed = std::chrono::steady_clock::now() - start;
std::cout << "sort took ";
std::cout << std::chrono::duration_cast<std::chrono::microseconds>(elapsed).count();
std::cout << " microseconds" << std::endl;
}