-
Notifications
You must be signed in to change notification settings - Fork 0
/
threads_barrier.cpp
130 lines (116 loc) · 3.17 KB
/
threads_barrier.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
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
#include <iostream>
#include <string>
#include <thread>
#include "utilities/utilities.h"
#include "utilities/utimer.cpp"
using namespace std;
int main(int argc, char *argv[])
{
utimer t0("total");
if (argc < 4)
{
cerr << "Usage: " << argv[0] << " <'K' for KNN> <'W' for number of workers> <'S' for chunk size> <'N' for number of points>" << endl;
exit(-1);
}
int k = atoi(argv[1]);
int nworkers = atoi(argv[2]);
int delta = max(nworkers, 32);
string n_points = "";
string filename = "data/input_";
if (argc == 5)
{
delta = atoi(argv[3]);
n_points = string(argv[4]);
filename += n_points + ".csv";
}
else
{
n_points = string(argv[3]);
filename += n_points + ".csv";
}
cout << "Chunk-size: " << delta << endl;
string outputs = "";
vector<Point> points;
{
utimer t1("read_points");
points = read_points(filename);
}
int size = points.size();
vector<string> local(size);
auto knn = [&points, &local](int low, int high, int k)
{
for (int i = low; i < high; i++)
{
vector<pair<int, float>> neighbours;
for (int j = 0; j < points.size(); j++)
{
if (i == j)
continue;
neighbours.push_back(make_pair(j, points[i].squaredEuclideanDistance(points[j])));
}
local[i] = write_neighbours(make_pair(i, kClosest_nth_element(neighbours, k)));
}
return;
};
{
utimer t3("knn");
vector<thread> workers;
int counter = 0;
while (true)
{
if (counter < size)
{
workers.push_back(thread(knn, counter, min(counter + delta, size), k));
counter += delta;
if (workers.size() == nworkers)
{
for (std::thread &t : workers)
{
try
{
t.join();
}
catch (const std::exception &e)
{
std::cout << "error : " << e.what() << std::endl;
}
}
workers.clear();
}
}
else
{
break;
}
}
if (workers.size())
{
for (std::thread &t : workers)
{
try
{
t.join();
}
catch (const std::exception &e)
{
std::cout << e.what() << std::endl;
}
}
}
for (int i = 0; i < size; i++)
outputs.append(local[i]);
}
{
utimer t5("write_results");
string filename = "threads_barrier_" + n_points + "_res.txt";
ofstream out(filename);
if (!out.is_open())
{
cerr << "Can't open file " << filename << endl;
exit(-1);
}
out << outputs << endl;
out.close();
}
return 0;
}