-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbenchmark_networkit.cpp
73 lines (57 loc) · 2.19 KB
/
benchmark_networkit.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
#include <iostream>
#include <NetworKit/generators/HyperbolicGenerator.h>
#include <NetworKit/auxiliary/Timer.h>
#include <NetworKit/graph/GraphBuilder.h>
#include <NetworKit/auxiliary/Parallel.h>
#include <NetworKit/auxiliary/Random.h>
#include "include/ScopedTimer.hpp"
int main(int argc, char* argv[]) {
unsigned int confNoPoints = 1000;
double confAvgDeg = 5;
double confExp = 2.1;
unsigned int generatorAlgo = 0;
unsigned int seed = 1234;
for(unsigned int i=1; i+1 < argc; i+=2) {
std::string key = argv[i];
std::string value = argv[i+1];
if (key == "-n") {confNoPoints = stoll(value);}
else if (key == "-d") {confAvgDeg = stod(value);}
else if (key == "-e") {confExp = stod(value);}
else if (key == "-g") {generatorAlgo = stoi(value);}
else if (key == "-s") {seed = stoi(value);}
else {
std::cerr << "Unknown argument: " << key << std::endl;
abort();
}
}
std::cout << "Parameters:\n"
"-n No. Nodes " << confNoPoints << "\n"
"-d Avg. Degree " << confAvgDeg << "\n"
"-e Distr. Exp " << confExp << "\n"
"-g Generator " << generatorAlgo << "\n"
" No. Worker " << omp_get_max_threads() << "\n"
"-s Seed " << seed
<< std::endl;
Aux::Random::setSeed(seed, false);
{
ScopedTimer timer("Timer");
NetworKit::HyperbolicGenerator gen(confNoPoints, confAvgDeg, confExp, 0.0);
const double R = gen.getR();
std::cout << "Target Radius: " << R << std::endl;
const auto pointsData = gen.generatePoints(confNoPoints, R, 0.5*(confExp-1), 0.0);
std::cout << "Number of points: " << pointsData.first.size() << std::endl;
std::string key;
switch (generatorAlgo) {
case 0:
gen.generateColdOrig(pointsData.first, pointsData.second, R);
break;
case 1:
gen.generateColdOpt(pointsData.first, pointsData.second, R);
break;
default:
std::cerr << "Unknown Generator Algorithm." << std::endl;
abort();
}
}
return 0;
}