-
Notifications
You must be signed in to change notification settings - Fork 3
/
test1.cpp
259 lines (205 loc) · 9.18 KB
/
test1.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
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
#include <iostream>
#include <chrono>
#include <stxxl/cmdline>
#include <stack>
#include <stxxl/vector>
#include <Utils/MonotonicPowerlawRandomStream.h>
#include <HavelHakimi/HavelHakimiGenerator.h>
#include <DistributionCount.h>
#include <HavelHakimi/HavelHakimiGeneratorRLE.h>
#include <DegreeDistributionCheck.h>
#include "SwapGenerator.h"
#include <EdgeSwaps/EdgeSwapInternalSwaps.h>
#include <EdgeSwaps/EdgeSwapTFP.h>
#include <EdgeSwaps/IMEdgeSwap.h>
enum EdgeSwapAlgo {
InternalSwaps,
ParallelTFP,
TFP,
IM
};
struct RunConfig {
stxxl::uint64 numNodes;
stxxl::uint64 minDeg;
stxxl::uint64 maxDeg;
double gamma;
bool rle;
bool showInitDegrees;
bool showResDegrees;
bool internalMem;
bool swapInternal;
bool swapTFP;
bool swapIM;
stxxl::uint64 swapsPerIteration;
stxxl::uint64 numSwaps;
unsigned int randomSeed;
RunConfig()
: numNodes(10 * 1024 * 1024)
, minDeg(2)
, maxDeg(100000)
, gamma(-2.0)
, rle(false)
, showInitDegrees(false)
, showResDegrees(false)
, internalMem(false)
, swapInternal(false)
, swapTFP(false)
, swapIM(false)
, swapsPerIteration(1024*1024)
, numSwaps(numNodes)
{
using myclock = std::chrono::high_resolution_clock;
myclock::duration d = myclock::now() - myclock::time_point::min();
randomSeed = d.count();
}
#if STXXL_VERSION_INTEGER > 10401
#define CMDLINE_COMP(chr, str, dest, args...) \
chr, str, dest, args
#else
#define CMDLINE_COMP(chr, str, dest, args...) \
chr, str, args, dest
#endif
bool parse_cmdline(int argc, char* argv[]) {
stxxl::cmdline_parser cp;
cp.add_bytes (CMDLINE_COMP('n', "num-nodes", numNodes, "Generate # nodes, Default: 10 Mi"));
cp.add_bytes (CMDLINE_COMP('a', "min-deg", minDeg, "Min. Deg of Powerlaw Deg. Distr."));
cp.add_bytes (CMDLINE_COMP('b', "max-deg", maxDeg, "Max. Deg of Powerlaw Deg. Distr."));
//cp.add_double(CMDLINE_COMP('g', "gamma", gamma, "Gamma of Powerlaw Deg. Distr."));
cp.add_uint (CMDLINE_COMP('s', "seed", randomSeed, "Initial seed for PRNG"));
cp.add_flag (CMDLINE_COMP('t', "internal-mem", internalMem, "Use Internal Memory for HH prio/stack (rather than STXXL containers)"));
cp.add_flag (CMDLINE_COMP('r', "rle", rle, "Use RLE HavelHakimi"));
cp.add_flag (CMDLINE_COMP('i', "init-degrees", showInitDegrees, "Output requested degrees (no HH gen)"));
cp.add_flag (CMDLINE_COMP('d', "res-degrees", showResDegrees, "Output degree distribution of result"));
cp.add_flag (CMDLINE_COMP('m', "swap-internal", swapInternal, "Perform edge swaps in internal memory"));
cp.add_flag (CMDLINE_COMP('e', "swap-tfp", swapTFP, "Perform edge swaps using TFP"));
cp.add_flag (CMDLINE_COMP('f', "swap-fully-internal", swapIM, "Perform edge swaps using only internal memory"));
cp.add_bytes (CMDLINE_COMP('p', "swaps-per-iteration", swapsPerIteration, "Number of swaps per iteration"));
cp.add_bytes (CMDLINE_COMP('z', "num-swaps", numSwaps, "Number of random swaps"));
if (!cp.process(argc, argv)) {
cp.print_usage();
return false;
}
cp.print_result();
return true;
}
};
template <typename Generator, typename Vector>
void materialize(Generator& gen, Vector & edges, stxxl::stats * stats, stxxl::stats_data& stats_begin) {
std::cout << "Stats after filling of prio queue:" << (stxxl::stats_data(*stats) - stats_begin);
edges.resize(gen.maxEdges());
auto endIt = stxxl::stream::materialize(gen, edges.begin());
edges.resize(endIt - edges.begin());
std::cout << "Generated " << edges.size() << " edges of possibly " << gen.maxEdges() << " edges" << std::endl;
}
void benchmark(RunConfig & config) {
stxxl::stats * stats = stxxl::stats::get_instance();
stxxl::stats_data stats_begin(*stats);
MonotonicPowerlawRandomStream<false> degreeSequence(config.minDeg, config.maxDeg, config.gamma, config.numNodes);
if (config.showInitDegrees) {
DistributionCount<MonotonicPowerlawRandomStream<false>> dcount(degreeSequence);
for(; !dcount.empty(); ++dcount) {
auto block = *dcount;
std::cout << block.value << " " << block.count << " # InitDD Degree Count" << std::endl;
}
return;
}
// create vector
using result_vector_type = stxxl::VECTOR_GENERATOR<edge_t>::result;
result_vector_type edges;
if (config.rle) {
DistributionCount<MonotonicPowerlawRandomStream<false>> dcount(degreeSequence);
HavelHakimiGeneratorRLE<DistributionCount<MonotonicPowerlawRandomStream<false>>> hhgenerator(dcount);
materialize(hhgenerator, edges, stats, stats_begin);
} else {
if (config.internalMem) {
HavelHakimiPrioQueueInt prio_queue;
std::stack<HavelHakimiNodeDegree> stack;
HavelHakimiGenerator<HavelHakimiPrioQueueInt, std::stack<HavelHakimiNodeDegree>> hhgenerator{prio_queue, stack, degreeSequence};
materialize(hhgenerator, edges, stats, stats_begin);
} else {
using hh_prio_queue = HavelHakimiPrioQueueExt<16 * IntScale::Mi, IntScale::Mi>;
hh_prio_queue prio_queue;
using hh_stack = stxxl::STACK_GENERATOR<HavelHakimiNodeDegree, stxxl::external, stxxl::grow_shrink>::result;
hh_stack stack;
HavelHakimiGenerator<hh_prio_queue, hh_stack> hhgenerator{prio_queue, stack, degreeSequence};
materialize(hhgenerator, edges, stats, stats_begin);
}
}
if (config.swapInternal || config.swapTFP || config.swapIM) {
int_t m = edges.size();
result_vector_type swapEdges(m);
{
result_vector_type::bufreader_type edgeReader(edges);
stxxl::sorter<edge_t, GenericComparator<edge_t>::Ascending> edgeSorter(GenericComparator<edge_t>::Ascending(), 128*IntScale::Mi);
while (!edgeReader.empty()) {
if (edgeReader->first < edgeReader->second) {
edgeSorter.push(edge_t {edgeReader->first, edgeReader->second});
} else {
edgeSorter.push(edge_t {edgeReader->second, edgeReader->first});
}
++edgeReader;
}
edgeSorter.sort();
stxxl::stream::materialize(edgeSorter, swapEdges.begin());
}
SwapGenerator swapGen(config.numSwaps, m);
stxxl::VECTOR_GENERATOR<SwapDescriptor>::result swaps(config.numSwaps);
auto endIt = stxxl::stream::materialize(swapGen, swaps.begin());
if (endIt - swaps.begin() != static_cast<int_t>(swaps.size())) {
throw std::runtime_error("Error, the number of generated swaps is not as specified");
}
if (config.swapInternal) {
auto stat_start = stxxl::stats_data(*stats);
EdgeSwapInternalSwaps internalSwaps(swapEdges, config.swapsPerIteration);
for (decltype(swaps)::bufreader_type swap_reader(swaps); !swap_reader.empty(); ++swap_reader) {
internalSwaps.push(*swap_reader);
}
internalSwaps.run();
std::cout << (stxxl::stats_data(*stats) - stat_start) << std::endl;
}
if (config.swapTFP) {
auto stat_start = stxxl::stats_data(*stats);
EdgeSwapTFP::EdgeSwapTFP TFPSwaps(swapEdges, swaps);
TFPSwaps.run(config.swapsPerIteration);
std::cout << (stxxl::stats_data(*stats) - stat_start) << std::endl;
}
if (config.swapIM) {
auto stat_start = stxxl::stats_data(*stats);
IMEdgeSwap IMSwaps(swapEdges);
for (decltype(swaps)::bufreader_type swap_reader(swaps); !swap_reader.empty(); ++swap_reader) {
IMSwaps.push(*swap_reader);
}
IMSwaps.run();
std::cout << (stxxl::stats_data(*stats) - stat_start) << std::endl;
}
}
std::cout << (stxxl::stats_data(*stats) - stats_begin);
#if 0
unsigned int i = 0;
for (auto edge : edges) {
std::cout << i++ << ": " << edge.first << ", " << edge.second << std::endl;
}
#endif
if (config.showResDegrees) {
DegreeDistributionCheck<result_vector_type::const_iterator> ddc {edges.begin(), edges.end()};
auto deg_distr = ddc.getDistribution();
for(; !deg_distr.empty(); ++deg_distr) {
auto block = *deg_distr;
std::cout << block.value << " " << block.count << " # ResDD Degree Count" << std::endl;
}
std::cout << "Stats after degree comp:" << (stxxl::stats_data(*stats) - stats_begin);
}
}
int main(int argc, char* argv[]) {
#ifndef NDEBUG
std::cout << "[build with assertions]" << std::endl;
#endif
std::cout << STXXL_VERSION_INTEGER << std::endl;
RunConfig config;
if (!config.parse_cmdline(argc, argv))
return -1;
stxxl::srandom_number32(config.randomSeed);
stxxl::set_seed(config.randomSeed);
benchmark(config);
return 0;
}