summaryrefslogtreecommitdiff
path: root/a3/concurrency.cc
blob: 96da641c55dbfadbeb925c75ec4f5d9120dcc632 (plain)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
#include <chrono>
#include <vector>
#include <iostream>
#include <algorithm>
#include <string>
#include <thread>
#include <random>
#include <cstddef>
#include <algorithm>
#include <concepts>
#include <future>
#include <ranges>
#include <execution>

class Measure
{
public:
	Measure()
		: start(std::chrono::high_resolution_clock::now())
	{
	}

	~Measure()
	{
		auto end = std::chrono::high_resolution_clock::now();
		std::chrono::duration<double> delta = end - start;
		std::cout << " " << delta.count() * 1000 << " ms passed" << std::endl;
	}

	std::chrono::time_point<std::chrono::high_resolution_clock> start{};
};

template<typename Callable>
void measure(const std::string& text, Callable c)
{
	std::cout << text << ":\n";

	for(int i = 0; i < 3; ++i)
	{ // RAII timed scoped
		Measure m;
		c();
	}
}

template<typename T>
std::vector<T> get_random_vector(std::size_t size,
                                 T min = std::numeric_limits<T>::min(),
                                 T max = std::numeric_limits<T>::max())
{
	std::default_random_engine generator;
	// Randomly generate T-values from the range [min; max]
	std::uniform_int_distribution<T> distrib(min, max);

	std::vector<T> v;
	v.resize(size);
	for(auto& item : v)
	{
		item = distrib(generator);
	}

	return v;
}

std::vector<std::string> get_random_strings(std::size_t size,
                                            std::size_t length,
                                            char min, char max)
{
	std::default_random_engine generator;
	// Randomly generate T-values from the range [min; max]
	std::uniform_int_distribution<char> distrib(min, max);

	std::vector<std::string> v;
	v.resize(size);
	for(auto& str : v)
	{
		str.reserve(length);
		for(auto i = 0u; i < str.capacity(); ++i)
		{
			str += distrib(generator);
		}
	}

	return v;
}

template<typename C, typename T>
//	requires std::forward_iterator<Iter>
	requires std:: ranges::input_range<C>
//std::vector<const T*> find_all(Iter begin, Iter end, const T& key)
std::vector<const T*> find_all(const C& c, const T& key)
{
	std::vector<const T*> res{};
	std::for_each(std::execution::seq,
	              c.begin(), c.end(),
	              [&key, &res](const T& value)
	              {
		              if(value == key)
		              {
			              res.push_back(&value);
		              }
	              });
	return res;
}

template<typename C, typename T>
//requires /*std::is_container<C> &&*/ std::is_same<C::value_type, T>::value
	requires std:: ranges::input_range<C>
std::vector<const T*> find_all(const C& v, const T& key, std::size_t n)
{
	std::condition_variable cv;
	bool run{false};

	std::vector<const T*> res{};

	// Calculate the chunk size needed for splitting the values into
	// (at most) n portions and at least 1 big portion.
	std::ptrdiff_t chunk_size =
		static_cast<std::ptrdiff_t>(std::ceil(static_cast<float>(v.size()) / static_cast<float>(n)));

	std::vector<std::future<std::vector<const T*>>> futures;

	auto begin = v.begin();
	auto end = v.end();
	while(begin < v.end())
	{
		end = begin + chunk_size;
		if(end > v.end())
		{
			end = v.end();
		}
		// create suspended thread for searching on [begin, end[ range
		futures.emplace_back(std::async(std::launch::async,
		                                [&key, &cv, &run, begin, end]()
		                                {
			                                std::mutex m;
			                                std::unique_lock lk(m);
			                                cv.wait(lk, [&run](){ return run; });
			                                return find_all(std::ranges::subrange(begin, end), key);
		                                }));
		begin = end;
	}

	{
		Measure meas;

		// Signal all threads to run
		run = true;
		cv.notify_all();

		// Get and append the result from each thread into accumulated results
		// vector
		for(auto& future : futures)
		{
			auto v = future.get();
			res.insert(res.end(), v.begin(), v.end());
		}
	}

	return res;
}

int main()
{
	{
		auto v = get_random_vector<int>(10'000'000, 0, 100);
//	std::array<int, 10> v{1,2,42,4,5,6,7,8,42,10}; // - this also works
//	int v[] = {1,2,42,4,5,6,7,8,42,10}; // - doesn't seem to work :-(

		// 42 is expected to be in the vector in ~1/100th of the indices
		int needle{42};
		std::size_t found_items{};
		{ // non-threaded
			measure("Single threaded search for int",
			        [&]()
			        {
				        auto res = find_all(v, needle);
				        found_items = res.size(); // consider this the 'truth"
			        });
		}

		for(auto num_threads = 1u; num_threads < 17u; ++num_threads)
		{
			std::cout << "Multi threaded (" << num_threads << ") search for int:\n";
			for(int i = 0; i < 3; ++i)
			{
				auto res = find_all(v, needle, num_threads);
				if(res.size() != found_items)
				{
					std::cout << "That was unexpected!\n";
				}
			}
		}
	}

	{
		auto v = get_random_strings(10'000'000, 20, 'a', 'z');

		// Pick middle string as needle so we get one match:
		std::string needle{v[v.size() / 2]};

		{ // non-threaded
			measure("Single threaded search for string",
			        [&]()
			        {
				        auto res = find_all(v, needle);
				        if(res.size() != 1)
				        {
					        std::cout << "That was unexpected!\n";
				        }
			        });
		}

		for(auto num_threads = 1u; num_threads < 17u; ++num_threads)
		{
			std::cout << "Multi threaded (" << num_threads << ") search for string:\n";
			for(int i = 0; i < 3; ++i)
			{
				auto res = find_all(v, needle, num_threads);
				if(res.size() != 1)
				{
					std::cout << "That was unexpected!\n";
				}
			}
		}
	}
}