-
Notifications
You must be signed in to change notification settings - Fork 0
/
sequential.cpp
62 lines (50 loc) · 1.38 KB
/
sequential.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
#include <iostream>
#include <string>
#include "utilities/utilities.h"
#include "utilities/utimer.cpp"
using namespace std;
int main(int argc, char *argv[])
{
utimer t0("total");
if (argc < 3)
{
cerr << "Usage: " << argv[0] << " <'K' for KNN> <'N' for number of points>" << endl;
exit(-1);
}
int k = atoi(argv[1]);
string filename = "data/input_" + string(argv[2]) + ".csv";
vector<Point> points;
string outpus = "";
{
utimer t1("read_points");
points = read_points(filename);
}
int size = points.size();
{
utimer t2("knn");
for (int i = 0; i < size; i++)
{
vector<pair<int, float>> neighbours;
for (int j = 0; j < size; j++)
{
if (i == j)
continue;
neighbours.push_back(make_pair(j, points[i].squaredEuclideanDistance(points[j])));
}
outpus.append(write_neighbours(make_pair(i, kClosest_nth_element(neighbours, k))));
}
}
{
utimer t3("write results");
string filename = "sequential_" + string(argv[2]) + "_res.txt";
ofstream out(filename);
if (!out.is_open())
{
cerr << "Can't open file " << filename << endl;
exit(-1);
}
out << outpus << endl;
out.close();
}
return 0;
}