-
Notifications
You must be signed in to change notification settings - Fork 2
/
run_recirculation.sh
executable file
·339 lines (298 loc) · 18.7 KB
/
run_recirculation.sh
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
#!/bin/bash
# This script runs HLL recirculation simulations for m = 64 and m = 128
# on CAIDA and MAWI traces and plots two figures.
# Usage:
# Traces are supposed to be in a directory ./traces/<mawi/caida>/<CAIDA1|CAIDA2|MAWI1|MAWI2>.pcap
# From the root directory:
# $ cargo build
# $ ./scripts/run_recirculation.sh
rm -r ./logs/recirculation 2> /dev/null
mkdir ./logs/recirculation
rm ./plots/recirculation_overall.dat 2> /dev/null
rm ./plots/recirculation_worst_case.dat 2> /dev/null
# Run a first series of simulations to pre-compute the appropriate number of CHT rows
echo "Pre-computing the number of rows to reach 90% load factor...";
## MAWI
### HLL m = 64
(
./target/debug/spada -f ./traces/mawi/MAWI1.pcap -t 4 -s 1 -r 1048576 -m 6 -d 1 -e 60.0 | \
grep "Overprovisioned" | \
awk '{printf("%s\n", $0) > "logs/recirculation/nrows_MAWI1_m6_d1_HLL.txt"}';
) &
(
./target/debug/spada -f ./traces/mawi/MAWI2.pcap -t 4 -s 1 -r 1048576 -m 6 -d 1 -e 60.0 | \
grep "Overprovisioned" | \
awk '{printf("%s\n", $0) > "logs/recirculation/nrows_MAWI2_m6_d1_HLL.txt"}';
) &
### HLL m = 128
(
./target/debug/spada -f ./traces/mawi/MAWI1.pcap -t 4 -s 1 -r 1048576 -m 7 -d 1 -e 60.0 | \
grep "Overprovisioned" | \
awk '{printf("%s\n", $0) > "logs/recirculation/nrows_MAWI1_m7_d1_HLL.txt"}';
) &
(
./target/debug/spada -f ./traces/mawi/MAWI2.pcap -t 4 -s 1 -r 1048576 -m 7 -d 1 -e 60.0 | \
grep "Overprovisioned" | \
awk '{printf("%s\n", $0) > "logs/recirculation/nrows_MAWI2_m7_d1_HLL.txt"}';
) &
## CAIDA
### HLL m = 64
(
./target/debug/spada -f ./traces/caida/CAIDA1.pcap -t 4 -s 1 -r 1048576 -m 6 -d 1 -e 1.0 | \
grep "Overprovisioned" | \
awk '{printf("%s\n", $0) > "logs/recirculation/nrows_CAIDA1_m6_d1_HLL.txt"}';
) &
(
./target/debug/spada -f ./traces/caida/CAIDA2.pcap -t 4 -s 1 -r 1048576 -m 6 -d 1 -e 1.0 | \
grep "Overprovisioned" | \
awk '{printf("%s\n", $0) > "logs/recirculation/nrows_CAIDA2_m6_d1_HLL.txt"}';
) &
### HLL m = 128
(
./target/debug/spada -f ./traces/caida/CAIDA1.pcap -t 4 -s 1 -r 1048576 -m 7 -d 1 -e 1.0 | \
grep "Overprovisioned" | \
awk '{printf("%s\n", $0) > "logs/recirculation/nrows_CAIDA1_m7_d1_HLL.txt"}';
) &
(
./target/debug/spada -f ./traces/caida/CAIDA2.pcap -t 4 -s 1 -r 1048576 -m 7 -d 1 -e 1.0 | \
grep "Overprovisioned" | \
awk '{printf("%s\n", $0) > "logs/recirculation/nrows_CAIDA2_m7_d1_HLL.txt"}';
) &
wait;
# Parse results to compute CHT number of rows for each configuration
nrows_mawi1_m6_d1=$(cat ./logs/recirculation/nrows_MAWI1_m6_d1_HLL.txt | awk '{ sum += $6 } END { if (NR > 0) print int(sum / NR) }');
echo "- MAWI1 m6 HLL nrows for 90% load factor: $nrows_mawi1_m6_d1";
nrows_mawi2_m6_d1=$(cat ./logs/recirculation/nrows_MAWI2_m6_d1_HLL.txt | awk '{ sum += $6 } END { if (NR > 0) print int(sum / NR) }');
echo "- MAWI2 m6 HLL nrows for 90% load factor: $nrows_mawi2_m6_d1";
nrows_mawi1_m7_d1=$(cat ./logs/recirculation/nrows_MAWI1_m7_d1_HLL.txt | awk '{ sum += $6 } END { if (NR > 0) print int(sum / NR) }');
echo "- MAWI1 m7 HLL nrows for 90% load factor: $nrows_mawi1_m7_d1";
nrows_mawi2_m7_d1=$(cat ./logs/recirculation/nrows_MAWI2_m7_d1_HLL.txt | awk '{ sum += $6 } END { if (NR > 0) print int(sum / NR) }');
echo "- MAWI2 m7 HLL nrows for 90% load factor: $nrows_mawi2_m7_d1";
nrows_caida1_m6_d1=$(cat ./logs/recirculation/nrows_CAIDA1_m6_d1_HLL.txt | awk '{ sum += $6 } END { if (NR > 0) print int(sum / NR) }');
echo "- CAIDA1 m6 HLL nrows for 90% load factor: $nrows_caida1_m6_d1";
nrows_caida2_m6_d1=$(cat ./logs/recirculation/nrows_CAIDA2_m6_d1_HLL.txt | awk '{ sum += $6 } END { if (NR > 0) print int(sum / NR) }');
echo "- CAIDA2 m6 HLL nrows for 90% load factor: $nrows_caida2_m6_d1";
nrows_caida1_m7_d1=$(cat ./logs/recirculation/nrows_CAIDA1_m7_d1_HLL.txt | awk '{ sum += $6 } END { if (NR > 0) print int(sum / NR) }');
echo "- CAIDA1 m7 HLL nrows for 90% load factor: $nrows_caida1_m7_d1";
nrows_caida2_m7_d1=$(cat ./logs/recirculation/nrows_CAIDA2_m7_d1_HLL.txt | awk '{ sum += $6 } END { if (NR > 0) print int(sum / NR) }');
echo "- CAIDA2 m7 HLL nrows for 90% load factor: $nrows_caida2_m7_d1";
# Run actual recirculation simulations
echo "Running recirculation simulations with 90% load factor...";
## MAWI
### HLL m = 64
(
./target/debug/spada -f ./traces/mawi/MAWI1.pcap -t 4 -s 1 -r $nrows_mawi1_m6_d1 -m 6 -d 1 -e 60.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_MAWI1_m6_d1_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_MAWI1_m6_d1_HLL.txt"}}';
) &
(
nrows_mawi1_m6_d2=$(awk -v var=$nrows_mawi1_m6_d1 'BEGIN { print int(var / 2) + 1}');
./target/debug/spada -f ./traces/mawi/MAWI1.pcap -t 4 -s 1 -r $nrows_mawi1_m6_d2 -m 6 -d 2 -e 60.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_MAWI1_m6_d2_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_MAWI1_m6_d2_HLL.txt"}}';
) &
(
nrows_mawi1_m6_d4=$(awk -v var=$nrows_mawi1_m6_d1 'BEGIN { print int(var / 4) + 3}');
./target/debug/spada -f ./traces/mawi/MAWI1.pcap -t 4 -s 1 -r $nrows_mawi1_m6_d4 -m 6 -d 4 -e 60.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_MAWI1_m6_d4_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_MAWI1_m6_d4_HLL.txt"}}';
) &
(
./target/debug/spada -f ./traces/mawi/MAWI2.pcap -t 4 -s 1 -r $nrows_mawi2_m6_d1 -m 6 -d 1 -e 60.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_MAWI2_m6_d1_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_MAWI2_m6_d1_HLL.txt"}}';
) &
(
nrows_mawi2_m6_d2=$(awk -v var=$nrows_mawi2_m6_d1 'BEGIN { print int(var / 2) + 1}');
./target/debug/spada -f ./traces/mawi/MAWI2.pcap -t 4 -s 1 -r $nrows_mawi2_m6_d2 -m 6 -d 2 -e 60.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_MAWI2_m6_d2_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_MAWI2_m6_d2_HLL.txt"}}';
) &
(
nrows_mawi2_m6_d4=$(awk -v var=$nrows_mawi2_m6_d1 'BEGIN { print int(var / 4) + 3}');
./target/debug/spada -f ./traces/mawi/MAWI2.pcap -t 4 -s 1 -r $nrows_mawi2_m6_d4 -m 6 -d 4 -e 60.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_MAWI2_m6_d4_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_MAWI2_m6_d4_HLL.txt"}}';
) &
wait
### HLL m = 128
(
./target/debug/spada -f ./traces/mawi/MAWI1.pcap -t 4 -s 1 -r $nrows_mawi1_m7_d1 -m 7 -d 1 -e 60.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_MAWI1_m7_d1_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_MAWI1_m7_d1_HLL.txt"}}';
) &
(
nrows_mawi1_m7_d2=$(awk -v var=$nrows_mawi1_m7_d1 'BEGIN { print int(var / 2) + 1}');
./target/debug/spada -f ./traces/mawi/MAWI1.pcap -t 4 -s 1 -r $nrows_mawi1_m7_d2 -m 7 -d 2 -e 60.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_MAWI1_m7_d2_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_MAWI1_m7_d2_HLL.txt"}}';
) &
(
nrows_mawi1_m7_d4=$(awk -v var=$nrows_mawi1_m7_d1 'BEGIN { print int(var / 4) + 3}');
./target/debug/spada -f ./traces/mawi/MAWI1.pcap -t 4 -s 1 -r $nrows_mawi1_m7_d4 -m 7 -d 4 -e 60.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_MAWI1_m7_d4_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_MAWI1_m7_d4_HLL.txt"}}';
) &
(
./target/debug/spada -f ./traces/mawi/MAWI2.pcap -t 4 -s 1 -r $nrows_mawi2_m7_d1 -m 7 -d 1 -e 60.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_MAWI2_m7_d1_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_MAWI2_m7_d1_HLL.txt"}}';
) &
(
nrows_mawi2_m7_d2=$(awk -v var=$nrows_mawi2_m7_d1 'BEGIN { print int(var / 2) + 1}');
./target/debug/spada -f ./traces/mawi/MAWI2.pcap -t 4 -s 1 -r $nrows_mawi2_m7_d2 -m 7 -d 2 -e 60.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_MAWI2_m7_d2_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_MAWI2_m7_d2_HLL.txt"}}';
) &
(
nrows_mawi2_m7_d4=$(awk -v var=$nrows_mawi2_m7_d1 'BEGIN { print int(var / 4) + 3}');
./target/debug/spada -f ./traces/mawi/MAWI2.pcap -t 4 -s 1 -r $nrows_mawi2_m7_d4 -m 7 -d 4 -e 60.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_MAWI2_m7_d4_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_MAWI2_m7_d4_HLL.txt"}}';
) &
wait
## CAIDA
### HLL m = 64
(
./target/debug/spada -f ./traces/caida/CAIDA1.pcap -t 4 -s 1 -r $nrows_caida1_m6_d1 -m 6 -d 1 -e 1.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_CAIDA1_m6_d1_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_CAIDA1_m6_d1_HLL.txt"}}';
) &
(
nrows_caida1_m6_d2=$(awk -v var=$nrows_caida1_m6_d1 'BEGIN { print int(var / 2) + 1}');
./target/debug/spada -f ./traces/caida/CAIDA1.pcap -t 4 -s 1 -r $nrows_caida1_m6_d2 -m 6 -d 2 -e 1.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_CAIDA1_m6_d2_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_CAIDA1_m6_d2_HLL.txt"}}';
) &
(
nrows_caida1_m6_d4=$(awk -v var=$nrows_caida1_m6_d1 'BEGIN { print int(var / 4) + 3}');
./target/debug/spada -f ./traces/caida/CAIDA1.pcap -t 4 -s 1 -r $nrows_caida1_m6_d4 -m 6 -d 4 -e 1.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_CAIDA1_m6_d4_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_CAIDA1_m6_d4_HLL.txt"}}';
) &
(
./target/debug/spada -f ./traces/caida/CAIDA2.pcap -t 4 -s 1 -r $nrows_caida2_m6_d1 -m 6 -d 1 -e 1.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_CAIDA2_m6_d1_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_CAIDA2_m6_d1_HLL.txt"}}';
) &
(
nrows_caida2_m6_d2=$(awk -v var=$nrows_caida2_m6_d1 'BEGIN { print int(var / 2) + 1}');
./target/debug/spada -f ./traces/caida/CAIDA2.pcap -t 4 -s 1 -r $nrows_caida2_m6_d2 -m 6 -d 2 -e 1.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_CAIDA2_m6_d2_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_CAIDA2_m6_d2_HLL.txt"}}';
) &
(
nrows_caida2_m6_d4=$(awk -v var=$nrows_caida2_m6_d1 'BEGIN { print int(var / 4) + 3}');
./target/debug/spada -f ./traces/caida/CAIDA2.pcap -t 4 -s 1 -r $nrows_caida2_m6_d4 -m 6 -d 4 -e 1.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_CAIDA2_m6_d4_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_CAIDA2_m6_d4_HLL.txt"}}';
) &
wait
### HLL m = 128
(
./target/debug/spada -f ./traces/caida/CAIDA1.pcap -t 4 -s 1 -r $nrows_caida1_m7_d1 -m 7 -d 1 -e 1.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_CAIDA1_m7_d1_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_CAIDA1_m7_d1_HLL.txt"}}';
) &
(
nrows_caida1_m7_d2=$(awk -v var=$nrows_caida1_m7_d1 'BEGIN { print int(var / 2) + 1}');
./target/debug/spada -f ./traces/caida/CAIDA1.pcap -t 4 -s 1 -r $nrows_caida1_m7_d2 -m 7 -d 2 -e 1.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_CAIDA1_m7_d2_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_CAIDA1_m7_d2_HLL.txt"}}';
) &
(
nrows_caida1_m7_d4=$(awk -v var=$nrows_caida1_m7_d1 'BEGIN { print int(var / 4) + 3}');
./target/debug/spada -f ./traces/caida/CAIDA1.pcap -t 4 -s 1 -r $nrows_caida1_m7_d4 -m 7 -d 4 -e 1.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_CAIDA1_m7_d4_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_CAIDA1_m7_d4_HLL.txt"}}';
) &
(
./target/debug/spada -f ./traces/caida/CAIDA2.pcap -t 4 -s 1 -r $nrows_caida2_m7_d1 -m 7 -d 1 -e 1.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_CAIDA2_m7_d1_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_CAIDA2_m7_d1_HLL.txt"}}';
) &
(
nrows_caida2_m7_d2=$(awk -v var=$nrows_caida2_m7_d1 'BEGIN { print int(var / 2) + 1}');
./target/debug/spada -f ./traces/caida/CAIDA2.pcap -t 4 -s 1 -r $nrows_caida2_m7_d2 -m 7 -d 2 -e 1.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_CAIDA2_m7_d2_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_CAIDA2_m7_d2_HLL.txt"}}';
) &
(
nrows_caida2_m7_d4=$(awk -v var=$nrows_caida2_m7_d1 'BEGIN { print int(var / 4) + 3}');
./target/debug/spada -f ./traces/caida/CAIDA2.pcap -t 4 -s 1 -r $nrows_caida2_m7_d4 -m 7 -d 4 -e 1.0 | \
egrep "loads|stat" | \
awk '{if ($0 ~ /loads/) {printf("%s\n", $0) > "logs/recirculation/load_CAIDA2_m7_d4_HLL.txt"} else if ($0 ~ /stat/) {printf("%s\n", $0) > "logs/recirculation/stats_CAIDA2_m7_d4_HLL.txt"}}';
) &
wait;
echo "Simulations completed.";
# Parse simulation results
touch ./plots/recirculation_overall.dat;
echo "Trace Datapath1m32 Datapath1m64 Datapath2m32 Datapath2m64 Datapath4m32 Datapath4m64" >> ./plots/recirculation_overall.dat;
## MAWI
tail -1 logs/recirculation/stats_MAWI1_m6_d1_HLL.txt | \
cat - <(tail -1 logs/recirculation/stats_MAWI1_m7_d1_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_MAWI1_m6_d2_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_MAWI1_m7_d2_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_MAWI1_m6_d4_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_MAWI1_m7_d4_HLL.txt) | tr '\n' '\t' | \
awk -F "\t" '{print "M1" "\t" $4 "\t" $10 "\t" $16 "\t" $22 "\t" $28 "\t" $34}' >> plots/recirculation_overall.dat;
tail -1 logs/recirculation/stats_MAWI2_m6_d1_HLL.txt | \
cat - <(tail -1 logs/recirculation/stats_MAWI2_m7_d1_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_MAWI2_m6_d2_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_MAWI2_m7_d2_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_MAWI2_m6_d4_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_MAWI2_m7_d4_HLL.txt) | tr '\n' '\t' | \
awk -F "\t" '{print "M2" "\t" $4 "\t" $10 "\t" $16 "\t" $22 "\t" $28 "\t" $34}' >> plots/recirculation_overall.dat;
## CAIDA
tail -1 logs/recirculation/stats_CAIDA1_m6_d1_HLL.txt | \
cat - <(tail -1 logs/recirculation/stats_CAIDA1_m7_d1_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_CAIDA1_m6_d2_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_CAIDA1_m7_d2_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_CAIDA1_m6_d4_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_CAIDA1_m7_d4_HLL.txt) | tr '\n' '\t' | \
awk -F "\t" '{print "C1" "\t" $4 "\t" $10 "\t" $16 "\t" $22 "\t" $28 "\t" $34}' >> plots/recirculation_overall.dat;
tail -1 logs/recirculation/stats_CAIDA2_m6_d1_HLL.txt | \
cat - <(tail -1 logs/recirculation/stats_CAIDA2_m7_d1_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_CAIDA2_m6_d2_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_CAIDA2_m7_d2_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_CAIDA2_m6_d4_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_CAIDA2_m7_d4_HLL.txt) | tr '\n' '\t' | \
awk -F "\t" '{print "C2" "\t" $4 "\t" $10 "\t" $16 "\t" $22 "\t" $28 "\t" $34}' >> plots/recirculation_overall.dat;
touch ./plots/recirculation_worst_case.dat;
echo "Trace Datapath1m32 Datapath1m64 Datapath2m32 Datapath2m64 Datapath4m32 Datapath4m64" >> ./plots/recirculation_worst_case.dat;
## MAWI
tail -1 logs/recirculation/stats_MAWI1_m6_d1_HLL.txt | \
cat - <(tail -1 logs/recirculation/stats_MAWI1_m7_d1_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_MAWI1_m6_d2_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_MAWI1_m7_d2_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_MAWI1_m6_d4_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_MAWI1_m7_d4_HLL.txt) | tr '\n' '\t' | \
awk -F "\t" '{print "M1" "\t" $5 "\t" $11 "\t" $17 "\t" $23 "\t" $29 "\t" $35}' >> plots/recirculation_worst_case.dat;
tail -1 logs/recirculation/stats_MAWI2_m6_d1_HLL.txt | \
cat - <(tail -1 logs/recirculation/stats_MAWI2_m7_d1_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_MAWI2_m6_d2_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_MAWI2_m7_d2_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_MAWI2_m6_d4_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_MAWI2_m7_d4_HLL.txt) | tr '\n' '\t' | \
awk -F "\t" '{print "M2" "\t" $5 "\t" $11 "\t" $17 "\t" $23 "\t" $29 "\t" $35}' >> plots/recirculation_worst_case.dat;
## CAIDA
tail -1 logs/recirculation/stats_CAIDA1_m6_d1_HLL.txt | \
cat - <(tail -1 logs/recirculation/stats_CAIDA1_m7_d1_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_CAIDA1_m6_d2_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_CAIDA1_m7_d2_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_CAIDA1_m6_d4_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_CAIDA1_m7_d4_HLL.txt) | tr '\n' '\t' | \
awk -F "\t" '{print "C1" "\t" $5 "\t" $11 "\t" $17 "\t" $23 "\t" $29 "\t" $35}' >> plots/recirculation_worst_case.dat;
tail -1 logs/recirculation/stats_CAIDA2_m6_d1_HLL.txt | \
cat - <(tail -1 logs/recirculation/stats_CAIDA2_m7_d1_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_CAIDA2_m6_d2_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_CAIDA2_m7_d2_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_CAIDA2_m6_d4_HLL.txt) | tr '\n' '\t' | \
cat - <(tail -1 logs/recirculation/stats_CAIDA2_m7_d4_HLL.txt) | tr '\n' '\t' | \
awk -F "\t" '{print "C2" "\t" $5 "\t" $11 "\t" $17 "\t" $23 "\t" $29 "\t" $35}' >> plots/recirculation_worst_case.dat;
echo "Results parsed.";
# Plot results
cd ./plots || exit;
gnuplot recirculation_overall.gp;
gnuplot recirculation_worst_case.gp;
echo "Plots saved.";