-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaster.pl
executable file
·596 lines (502 loc) · 13.6 KB
/
master.pl
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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
#!/usr/bin/perl
use warnings;
use strict;
use GRID::Cluster;
use Data::Dumper;
use File::Basename;
use File::Copy;
use Cwd;
BEGIN { $| = 1 }
my $MACHINES_FILE = 'machines.txt';
my $MEMORY_REQUIREMENT = 1000000;
my $WORKING_DIRECTORY = dirname(Cwd::abs_path($0)) . '/';
my $DEBUG = 0;
my %machines = ();
if ( -f $MACHINES_FILE ) {
open (my $fh, '<', $MACHINES_FILE);
while ( <$fh> ) {
my @p = split;
$machines{$p[0]} = min(int($p[1]/2), int($p[2] / $MEMORY_REQUIREMENT));
}
close($fh);
} else {
%machines = ("localhost" => 2);
}
# !! debugging - comment out
#%machines = ("u-pl28" => 3, "u-pl29" => 3, 'u-pl1' => 7, 'u-pl2'=> 7, 'u-pl3' => 7);
# !! debugging - comment out
# read input data files
# process members
open(my $fh, '<', 'members.txt') or die ('Missing input file members.txt');
my $memberCount = 0;
my %members = ();
my %membersWinning = ();
my %membersMapping = ();
my %mappingR2A = ();
while ( <$fh> ) {
$memberCount++;
chomp;
my @p = split (/\t/);
$members{$memberCount} = {'name' => $p[0], 'party' => $p[1], 'type' => 0};
$membersMapping{0}{$memberCount} = $memberCount;
$mappingR2A{$memberCount} = $memberCount;
}
$membersMapping{0}{$memberCount+1} = 'D';
close($fh);
# process input file with votes
copy("input.txt", "input.txt.begin");
my @voting;
my @votingO;
my $votingId = 0;
open($fh, '<', 'input.txt') or die ('Missing input file input.txt');
while ( <$fh> ) {
chomp;
my @p = map(int, split);
$voting[$votingId] = \@p;
$votingO[$votingId] = \@p;
$votingId++;
}
close($fh);
# process input files with voting information
my @votingInfo;
my @votingInfoO;
$votingId = 0;
open($fh, '<', 'votings.txt') or die ('Missing input file votings.txt');
while ( <$fh> ) {
chomp;
my @p = split (/\t/);
my $h = {
'id' => $p[0],
'name' => $p[1],
'req' => int($p[2]),
'1' => int($p[3]),
'-1' => int($p[4]),
'0' => int($p[5]),
'res' => ($p[3] >= $p[2] ? 1 : -1)
};
$votingInfo[$votingId] = $h;
$votingInfoO[$votingId] = $h;
$votingId++;
}
close($fh);
# specify number of iterations
my $limit = $memberCount;
if ( exists($ARGV[0]) ) {
if ( $ARGV[0] eq 'keep' || $ARGV[0] eq 'throw' ) {
$ARGV[1] = $ARGV[0];
} else {
$limit = int($ARGV[0]);
}
}
if ( $limit >= $memberCount ) {
$limit = $memberCount;
}
# specify strategy
my $strategy = 'keep';
if ( exists($ARGV[1]) ) {
$strategy = $ARGV[1];
}
if ( $strategy ne 'keep' && $strategy ne 'throw' ) {
print STDERR "Unknown strategy\n";
exit(2);
}
my $diffV = 0;
my $diffD = 0;
my @wrongVoting = ();
print STDERR "Machines: \n";
for my $m (sort keys %machines) {
print STDERR "\t$m\t$machines{$m}\n";
}
print STDERR "\n";
print STDERR "Limit: $limit\n";
print STDERR "Strategy: $strategy\n";
print STDERR "\n";
print STDERR time() . "\tCluster INIT - BEGIN\n";
# init cluster
my $cluster = GRID::Cluster->new(max_num_np => \%machines,);
$cluster->chdir($WORKING_DIRECTORY);
print STDERR time() . "\tCluster INIT - END\n";
for my $round ( 1 .. ($limit) ) {
print STDERR "\nRound: $round\n";
print STDERR time() . "\tRound: $round\n";
# store input file for each iteration
createInputFile("input.txt.".$round);
copy("input.txt.".$round, "input.txt") or die "Copy failed: $!";
# prepare commands for execution
my @commands = ();
my %executed = ();
for my $k (sort { $a <=> $b } grep { $members{$_}{type} == 0 } keys %members) {
my $command = "./node.sh $mappingR2A{$k}";
if ( $DEBUG ) {
print STDERR "\tCommand: $command\n";
}
$executed{$mappingR2A{$k}} = 0;
push(@commands, $command);
}
my %results = ();
my $attemp = 0;
executeTraining($attemp, \@commands, \%results, \%executed);
my @bogus = grep { $executed{$_} == 0 } keys %executed;
while ( @bogus && $attemp < 5) {
$attemp++;
@commands = ();
for my $b (@bogus) {
my $command = "./node.sh $b";
if ( $DEBUG ) {
print STDERR "\tCommand: $command\n";
}
push(@commands, $command);
}
executeTraining($attemp, \@commands, \%results, \%executed);
@bogus = grep { $executed{$_} == 0 } keys %executed;
}
# find the most predictable member
my @sorted = sort { $results{$b}{score} <=> $results{$a}{score} } keys %results;
my $bestAct = $sorted[0];
my $bestReal = $membersMapping{$round-1}{$bestAct};
if ( $DEBUG ) {
print STDERR "Best: $bestAct\n";
}
$membersWinning{$round} = $bestAct;
if ( $strategy eq 'keep' ) {
$membersMapping{$round} = $membersMapping{$round-1};
} elsif ( $strategy eq 'throw' ) {
if ( $DEBUG ) {
print STDERR "Mapping BEF: ";
for my $k (1 .. ($memberCount-$round+1)) {
print STDERR "$k => " . $membersMapping{$round-1}{$k} . ", ";
}
print STDERR "\n";
}
my $delta = 0;
for my $k (1 .. ($memberCount-$round+1)) {
if ( $bestAct == $k ) {
$delta = 1;
}
if ( $delta == 0 ) {
$membersMapping{$round}{$k} = $membersMapping{$round-1}{$k};
} else {
$membersMapping{$round}{$k} = $membersMapping{$round-1}{$k + $delta};
}
$mappingR2A{$membersMapping{$round}{$k}} = $k;
}
if ( $DEBUG ) {
print STDERR "Mapping AFT: ";
for my $k (1 .. ($memberCount-$round+1)) {
print STDERR "$k => " . $membersMapping{$round}{$k} . ", ";
}
print STDERR "\n";
}
}
$members{$bestReal}{type} = $round;
$diffV = 0;
$diffD = 0;
@wrongVoting = ();
print STDERR time() . "\tPROCESS RESULTS - BEGIN\n";
if ( $strategy eq 'keep' ) {
processResultKeep($bestReal);
} elsif ( $strategy eq 'throw' ) {
processResultThrow($round, $bestAct);
}
print STDERR time() . "\tPROCESS RESULTS - END\n";
my $name = "";
my $score = "";
# print out information about iteration
$name = sprintf("%30s", $members{$bestReal}{name});
$score = sprintf("%.4f (%d/%d)", $results{$bestAct}{score}, $results{$bestAct}{hits}, $results{$bestAct}{total});
print "$round\t$bestReal\t$name\t$score\t$diffD\t$diffV\n";
for my $k (@sorted) {
my $actK = $membersMapping{$round - 1}{$k};
$name = sprintf("%30s", $members{$actK}{name});
$score = sprintf("%.4f (%4d/%4d)", $results{$k}{score}, $results{$k}{hits}, $results{$k}{total});
print "\tP\t$actK\t$name\t$score\t$results{$k}{host}\t$results{$k}{time}\n";
}
for my $v (@wrongVoting) {
print "\tV\t$v->{id}\t$v->{name}\t$v->{from}\t$v->{to}\n";
}
}
createInputFile("input.txt.end");
copy("input.txt.begin", "input.txt");
sub min
{
my ($v1, $v2) = @_;
if ( $v1 < $v2 ) {
return $v1;
} else {
return $v2;
}
}
sub createInputFile
{
my $fName = shift;
open(my $fh, '>', $fName);
for my $v (@voting) {
print ${fh} join("\t", @{$v}), "\n";
}
close($fh);
}
sub processResultKeep
{
# simulate his voting
my $r = shift;
open(my $fhSim, '-|', "./simulate.sh $r");
my @mVoting = ();
my $mVotingId = 0;
while ( <$fhSim> ) {
chomp;
my $v = int($_);
# if member doesn't vote in real, he will skip voting in simulation
if ( $voting[$mVotingId][$r - 1] == 0 ) {
$v = 0;
}
$mVoting[$mVotingId] = $v;
# if decision differs, count it
if ( $v != $voting[$mVotingId][$r - 1] ) {
# different vote
$diffV++;
# change voting counts
$votingInfo[$mVotingId]{$voting[$mVotingId][$r - 1]}--;
$votingInfo[$mVotingId]{$v}++;
# check, whether result is different
my $actRes = ($votingInfo[$mVotingId]{1} >= $votingInfo[$mVotingId]{-1} ? 1 : -1);
if ( $actRes != $votingInfo[$mVotingId]{res} ) {
$diffD++;
push(@wrongVoting, { 'id' => $votingInfo[$mVotingId]{id},
'name' => $votingInfo[$mVotingId]{name},
'from' => $votingInfo[$mVotingId]{res},
'to' => $actRes }
);
}
}
# store voting
$voting[$mVotingId][$r - 1] = $v;
$mVotingId++;
}
close($fhSim);
}
sub processResultThrow
{
my ($round, $r) = @_;
# simulate his voting
copy('trained_net_' . $r . '.mat', 'trained_net_turn_' . $round . '.mat');
my @keys = sort { $a <=> $b } keys %membersWinning;
@voting = map { [@$_] } @votingO;
# vyhozeni nepotrenobnych sloupcu ze souboru
# aktualni kolo se nevyhazuje
for my $k (@keys) {
if ( $k != $round ) {
removeInputColumn($membersWinning{$k});
}
}
# postupne odsimuluj vysledky
for my $k (reverse @keys) {
simulateThrow($round, $k);
}
# prepocitej vysledky
for my $v (0 .. (@voting - 1)) {
my %map = (-1 => 0, 0 => 0, 1 => 0 );
if ( $DEBUG ) {
print STDERR "Voting: $v\n";
}
for my $m (0 .. (@{$voting[$v]} - 1)) {
if ( $DEBUG ) {
print STDERR "$votingO[$v][$m] x $voting[$v][$m]\n";
}
$map{$voting[$v][$m]}++;
}
$diffV += abs($votingInfo[$v]{-1} - $map{-1});
# if ( $map{0} != $votingInfo[$v]{0} ) {
# print STDERR "!!!!!!!!!!!!!!!!!!!!!!\n";
# print STDERR "ERROR IN VOTE COUNTING\n";
# print STDERR "Voting: $v\n";
# print STDERR "-1: ".$votingInfo[$v]{-1}.' x '.$map{-1}."; ";
# print STDERR "0: ".$votingInfo[$v]{0}.' x '.$map{0}."; ";
# print STDERR "1: ".$votingInfo[$v]{1}.' x '.$map{1}."\n";
# if ( $DEBUG ) {
# die("Error in vote counting.");
# }
# }
if ( $DEBUG ) {
print STDERR sprintf("[%3d]: ", $diffV);
print STDERR "-1: ".$votingInfo[$v]{-1}.' x '.$map{-1}."; ";
print STDERR "0: ".$votingInfo[$v]{0}.' x '.$map{0}."; ";
print STDERR "1: ".$votingInfo[$v]{1}.' x '.$map{1}."\n";
}
my $actRes = ($map{1} >= $votingInfo[$v]{req} ? 1 : -1);
if ( $votingInfo[$v]{res} != $actRes ) {
$diffD++;
push(@wrongVoting, { 'id' => $votingInfo[$v]{id},
'name' => $votingInfo[$v]{name},
'from' => $votingInfo[$v]{res},
'to' => $actRes }
);
}
#print "$v\t$diff\t$diffV\t$diffD\n";
}
for my $k (@keys) {
removeInputColumn($membersWinning{$k});
}
}
sub removeInputColumn
{
my $colId = shift;
$colId--;
if ( $DEBUG ) {
print STDERR "Del: $colId\n";
print STDERR "Bef:\t" . join("\t", @{$voting[0]}) . "\n";
}
my @votingB = map { [@$_] } @voting;
@voting = ();
for my $v (0 .. (@votingB - 1)) {
my $i = 0;
for my $m (0 .. (@{$votingB[$v]} - 1)) {
if ( $m != $colId ) {
$voting[$v][$i++] = $votingB[$v][$m];
}
}
}
if ( $DEBUG ) {
# if ( @{$voting[0]} ) {
# print STDERR "After:\t" . join("\t", @{$voting[0]}) . "\n";
# } else {
# print STDERR "After:\tEMPTY\n";
# }
}
}
sub simulateThrow
{
my ($round, $turn) = @_;
my $mId = $membersWinning{$turn} - 1;
my $mappedId = $membersMapping{$turn-1}{$mId+1}-1;
if ( $DEBUG ) {
print STDERR "Simulate Turn: $turn, Member: $mId, Mapped: $mappedId\n";
print STDERR "Bef:\t" . join("\t", @{$voting[0]}) . "\n";
}
copy('trained_net_turn_' . $turn . '.mat', 'trained_net_' . ($mId+1) . '.mat');
if ( $turn != $round ) {
for my $v (0 .. (@voting - 1)) {
my $old = undef;
for my $m (0 .. (@{$voting[$v]} - 1)) {
if ( $m == $mId ) {
$old = $voting[$v][$m];
$voting[$v][$m] = 0;
} else {
my $new = $voting[$v][$m];
if ( ! defined($old) ) {
$voting[$v][$m] = $new;
} else {
$voting[$v][$m] = $old;
$old = $new;
}
}
}
if ( ! defined($old) ) {
$old = 0;
}
$voting[$v][@{$voting[$v]}] = $old;
}
}
createInputFile('input.txt');
my $expColWidth = ($memberCount + 1 - $turn);
my $actColWidth = (scalar @{$voting[0]});
if ( $expColWidth != $actColWidth ) {
die("Error during input manipulation. Columns - EXP: $expColWidth; WAS: $actColWidth\n");
}
my $simCmd = "./simulate.sh " . ( $mId + 1) . " " . ($expColWidth);
my $attemp = 0;
my $error = 0;
my $mVotingId = 0;
my @mVoting = ();
do {
open(my $fhSim, '-|', $simCmd);
print STDERR time() . "\tSIMMULATE " . ( $mId + 1) . " ($attemp)\n";
$error = 0;
$attemp++;
my $mVotingId = 0;
while ( <$fhSim> ) {
chomp;
my $v = int($_);
if ( $_ !~ /^(1|0|-1)$/ ) {
print STDERR $_, "\n";
while (<$fhSim>) {
print STDERR $_;
}
# die("Broken simulation");
last;
}
# if member doesn't vote in real, he will skip voting in simulation
my $orig = $votingO[$mVotingId][$mappedId];
if ( $orig == 0 ) {
$v = 0;
}
if ( $DEBUG ) {
print STDERR "\tS: ". int($_)."\tO: " . $orig . "\tR: " . $v . "\n";
}
# $mVoting[$mVotingId] = 'S['.$turn.']'.$v;
$mVoting[$mVotingId] = $v;
$mVotingId++;
}
close($fhSim);
# print STDERR "$mVotingId : $#mVoting != $#voting\n";
if ( $#mVoting != $#voting ) {
$error = 1;
}
} while ( $attemp < 5 && $error == 1 );
# zadny sloupec se nepridava, jen se prepisi hodnoty
# if ( $turn == $round ) {
for my $v (0 .. (@voting - 1)) {
for my $m (0 .. (@{$voting[$v]} - 1)) {
if ( $m == $mId ) {
$voting[$v][$m] = $mVoting[$v];
}
}
}
# } else {
#
# for my $v (0 .. (@voting - 1)) {
# my $old = undef;
# for my $m (0 .. (@{$voting[$v]} - 1)) {
# if ( $m == $mId ) {
# $old = $voting[$v][$m];
# $voting[$v][$m] = $mVoting[$v];
# } else {
# my $new = $voting[$v][$m];
# if ( ! defined($old) ) {
# $voting[$v][$m] = $new;
# } else {
# $voting[$v][$m] = $old;
# $old = $new;
# }
# }
# }
# if ( ! defined($old) ) {
# $old = $mVoting[$v];
# }
# $voting[$v][@{$voting[$v]}] = $old;
# }
# }
if ( $DEBUG ) {
print STDERR "After:\t" . join("\t", @{$voting[0]}) . "\n";
}
}
sub executeTraining
{
my ($attemp, $commandsRef, $resultsRef, $executedRef) = @_;
# execute commands
print STDERR time() . "\tEXECUTE ($attemp) - BEGIN\n";
my $result = $cluster->qx(@{$commandsRef});
print STDERR time() . "\tEXECUTE ($attemp) - END\n";
# store results
for my $res (@{$result}) {
my @p = split(/\n/, $res);
$resultsRef->{$p[1]} = { 'score' => $p[6],
'host' => $p[0],
'time' => $p[3] - $p[2],
'hits' => $p[4],
'total' => $p[5]
};
if ( $p[6] ) {
$executedRef->{$p[1]} = 1;
}
}
}