-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththreads_map.cpp
More file actions
85 lines (72 loc) · 2.16 KB
/
threads_map.cpp
File metadata and controls
85 lines (72 loc) · 2.16 KB
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
#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> <'N' for number of points>" << endl;
exit(-1);
}
int k = atoi(argv[1]);
int nworkers = atoi(argv[2]);
string filename = "data/input_" + string(argv[3]) + ".csv";
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](const pair<int, int> range, const int k)
{
for (int i = range.first; i < range.second; 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> threads;
vector<pair<int, int>> ranges(nworkers);
int delta = points.size() / nworkers;
{
utimer t4("split");
for (int i = 0; i < nworkers; i++)
{
ranges[i] = make_pair(i * delta, (i != (nworkers - 1) ? (i + 1) * delta : points.size()));
threads.push_back(thread(knn, ranges[i], k));
}
}
for (thread &t : threads)
t.join();
for (int i = 0; i < size; i++)
outputs.append(local[i]);
}
{
utimer t5("write_results");
string filename = "threads_map_" + string(argv[3]) + "_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;
}