forked from zamar/spsa
-
Notifications
You must be signed in to change notification settings - Fork 2
/
spsa.pl
executable file
·565 lines (448 loc) · 19.4 KB
/
spsa.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
#!/usr/bin/perl
# SPSA Tuner
# Copyright (C) 2009-2014 Joona Kiiski
#
# SPSA Tuner is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# SPSA Tuner is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
use strict;
use warnings;
use threads;
use threads::shared;
use Time::HiRes qw(time);
use IPC::Open2;
use IO::Select;
use Config::Tiny;
use Text::CSV;
use Math::Round qw(nearest nearest_floor);
use List::Util qw(min max);
use IO::Handle;
use AutoLoader qw(AUTOLOAD);
STDOUT->autoflush(1);
STDERR->autoflush(1);
my $IS_WINDOWS = ($^O eq 'MSWin32');
### SECTION. Settings (Static data during execution)
my $ConfigFile = $ARGV[0] || die "You must pass the name of config file as parameter!";
my $Config = Config::Tiny->new;
$Config = Config::Tiny->read($ConfigFile) || die "Unable to read configuration file '" . $ConfigFile . "'";
my $simulate = $Config->{Main}->{Simulate} ; defined($simulate) || die "Simulate not defined!";
my $variables_path = $Config->{Main}->{Variables} ; defined($variables_path) || die "Variables not defined!";
my $log_path = $Config->{Main}->{Log} ; defined($log_path) || die "Log not defined!";
my $gamelog_path = $Config->{Main}->{GameLog} ; defined($gamelog_path) || die "GameLog not defined!";
my $iterations = $Config->{Main}->{Iterations}; defined($iterations) || die "Iterations not defined!";
my $A = $Config->{Main}->{A} ; defined($A) || die "A not defined!";
my $gamma = $Config->{Main}->{Gamma} ; defined($gamma) || die "Gamma not defined!";
my $alpha = $Config->{Main}->{Alpha} ; defined($alpha) || die "Alpha not defined!";
my $eng1_path = $Config->{Engine}->{Engine1} ; defined($eng1_path) || $simulate || die "Engine1 not defined!";
my $eng2_path = $Config->{Engine}->{Engine2} ; defined($eng2_path) || $simulate || die "Engine2 not defined!";
my $epd_path = $Config->{Engine}->{EPDBook} ; defined($epd_path) || $simulate || die "EPDBook not defined!";
my $base_time = $Config->{Engine}->{BaseTime} ; defined($base_time) || $simulate || die "BaseTime not defined!";
my $inc_time = $Config->{Engine}->{IncTime} ; defined($inc_time) || $simulate || die "IncTime not defined!";
my $threads = $Config->{Engine}->{Concurrency} ; defined($threads) || $simulate || die "Concurrency not defined!";
my $draw_score_limit = $Config->{Engine}->{DrawScoreLimit} ; defined($draw_score_limit) || $simulate || die "DrawScoreLimit not defined!";
my $draw_move_limit = $Config->{Engine}->{DrawMoveLimit} ; defined($draw_move_limit) || $simulate || die "DrawMoveLimit not defined!";
my $win_score_limit = $Config->{Engine}->{WinScoreLimit} ; defined($win_score_limit) || $simulate || die "WinScoreLimit not defined!";
my $win_move_limit = $Config->{Engine}->{WinMoveLimit} ; defined($win_move_limit) || $simulate || die "WinMoveLimit not defined!";
my $variant = $Config->{Engine}->{Variant} ; defined($variant) || $simulate || die "Variant not defined!";
$threads = 1 if ($simulate);
### SECTION. Variable CSV-file columns. (Static data during execution)
my $VAR_NAME = 0; # Name
my $VAR_START = 1; # Start Value (theta_0)
my $VAR_MIN = 2; # Minimum allowed value
my $VAR_MAX = 3; # Maximum allowed value
my $VAR_C_END = 4; # c in the last iteration
my $VAR_R_END = 5; # R in the last iteration. R = a / c ^ 2.
my $VAR_SIMUL_ELO = 6; # Simulation: Elo loss from 0 (optimum) to +-100)
my $VAR_END = 7; # Nothing
# Extra calculated COLUMNS (SPSA paramters)
my $VAR_C = 7; # c
my $VAR_A_END = 8; # a in the last iteration
my $VAR_A = 9; # a
### SECTION. Variable definitions. (Static data during execution)
my @variables;
my %variableIdx;
### SECTION. Log file handle (Static data during execution)
local (*LOG);
### SECTION. Shared data (volatile data during the execution)
my $shared_lock :shared;
my $shared_iter :shared; # Iteration counter
my %shared_theta :shared; # Current values by variable name
### SECTION. Helper functions
# Function to safely read in a standard CSV-file.
sub read_csv
{
my ($csvfile, $rows) = @_;
my ($CSV, $row);
open(INFILE, '<', $csvfile) || die "Could not open file '$csvfile' for reading!";
binmode(INFILE);
$CSV = Text::CSV->new();
while($row = $CSV->getline(\*INFILE))
{
push(@$rows, $row);
}
$CSV->eof || die "CSV-file parsing error: " . $CSV->error_diag();
close(INFILE);
}
### SECTION. Execution preparation code ("main" function)
{
my $row;
# STEP. Open shared log file.
open(LOG, '>', $log_path) || die "Could not open file '$log_path' for writing!";
LOG->autoflush(1);
# STEP. Read in variable data.
read_csv($variables_path, \@variables);
# STEP. Validate variable data.
foreach $row (@variables)
{
die "Wrong number of columns!" if (scalar(@$row) != $VAR_END);
die "Invalid name: '$row->[$VAR_NAME]'" if ($row->[$VAR_NAME] !~ /^[ \w\[\]]+$/);
die "Invalid current: '$row->[$VAR_START]'" if ($row->[$VAR_START] !~ /^[-+]?[0-9]*\.?[0-9]+$/);
die "Invalid max: '$row->[$VAR_MAX]'" if ($row->[$VAR_MAX] !~ /^[-+]?[0-9]*\.?[0-9]+$/);
die "Invalid min: '$row->[$VAR_MIN]'" if ($row->[$VAR_MIN] !~ /^[-+]?[0-9]*\.?[0-9]+$/);
die "Invalid c end: '$row->[$VAR_C_END]'" if ($row->[$VAR_C_END] !~ /^[-+]?[0-9]*\.?[0-9]+$/);
die "Invalid r end: '$row->[$VAR_R_END]'" if ($row->[$VAR_R_END] !~ /^[-+]?[0-9]*\.?[0-9]+$/);
die "Invalid simul ELO: '$row->[$VAR_SIMUL_ELO]'" if ($row->[$VAR_SIMUL_ELO] !~ /^[-+]?[0-9]*\.?[0-9]+$/);
}
# STEP. Calculate SPSA parameters for each variable.
foreach $row (@variables)
{
$row->[$VAR_C] = $row->[$VAR_C_END] * $iterations ** $gamma;
$row->[$VAR_A_END] = $row->[$VAR_R_END] * $row->[$VAR_C_END] ** 2;
$row->[$VAR_A] = $row->[$VAR_A_END] * ($A + $iterations) ** $alpha;
}
# STEP. Create variable index for easy access.
foreach $row (@variables)
{
$variableIdx{$row->[$VAR_NAME]} = $row;
}
# STEP. Prepare shared data
$shared_iter = 0;
foreach $row (@variables)
{
$shared_theta{$row->[$VAR_NAME]} = $row->[$VAR_START];
}
# STEP. Launch SPSA threads
my @thr;
for (my $i = 1; $i <= $threads; $i++)
{
$thr[$i] = threads->create(\&run_spsa, $i);
# HACK: Under Windows the combination of starting new threads and
# calling open2() at the same time seems to be problematic.
# So wait for 3 seconds to make sure each new thread has cleanly
# started the engine process before starting a new thread.
sleep(3) if $IS_WINDOWS;
}
# STEP. Join threads
for (my $i = 1; $i <= $threads; $i++)
{
$thr[$i]->join();
}
# STEP. Close Log file
close(LOG);
# STEP. Quit
exit 0;
}
### SECTION. SPSA
local (*GAMELOG);
sub run_spsa
{
my ($threadId) = @_;
my $row;
# STEP. Open thread specific log file
my $path = $gamelog_path;
my $from = quotemeta('$THREAD');
my $to = $threadId;
$path =~ s/$from/$to/g;
open(GAMELOG, '>', $path) || die "Could not open file '$path' for writing!";;
# STEP. Init random generator
srand(time ^ $$ ^ $threadId);
# STEP. Init engines
engine_init() if (!$simulate);
while(1)
{
# SPSA coefficients indexed by variable.
my (%var_min, %var_max, %var_a, %var_c, %var_R, %var_delta, %var_eng1, %var_eng2);
my $iter;
{
lock($shared_lock);
# STEP. Increase the shared interation counter
if (++$shared_iter > $iterations)
{
engine_quit() if (!$simulate);
printf "%d iterations\n", $iterations;
foreach $row (@variables)
{
my $name = $row->[$VAR_NAME];
$var_min{$name} = $row->[$VAR_MIN];
$var_max{$name} = $row->[$VAR_MAX];
$var_a{$name} = $row->[$VAR_A] / ($A + $iterations) ** $alpha;
$var_c{$name} = $row->[$VAR_C] / $iterations ** $gamma;
$var_R{$name} = $var_a{$name} / $var_c{$name} ** 2;
printf "%s, %f, %f, %f, %f, %f, %d\n", $name, $shared_theta{$name}, $var_min{$name}, $var_max{$name}, $var_c{$name}, $var_R{$name}, $simulate;
}
return;
}
$iter = $shared_iter;
# STEP. Calculate the necessary coefficients for each variable.
printf "Iteration %d\n", $iter;
foreach $row (@variables)
{
my $name = $row->[$VAR_NAME];
$var_min{$name} = $row->[$VAR_MIN];
$var_max{$name} = $row->[$VAR_MAX];
$var_a{$name} = $row->[$VAR_A] / ($A + $iter) ** $alpha;
$var_c{$name} = $row->[$VAR_C] / $iter ** $gamma;
$var_R{$name} = $var_a{$name} / $var_c{$name} ** 2;
$var_delta{$name} = int(rand(2)) ? 1 : -1;
my $step = $var_c{$name} * $var_delta{$name};
$var_eng1{$name} = min(max($shared_theta{$name} + $step, $var_min{$name}), $var_max{$name});
$var_eng2{$name} = min(max($shared_theta{$name} - $step, $var_min{$name}), $var_max{$name});
my $lower = min($var_eng1{$name}, $var_eng2{$name});
my $upper = max($var_eng1{$name}, $var_eng2{$name});
printf "Parameter: %s, theta: %f, x: [%f, %f], a: %f, R: %f\n", $name, $shared_theta{$name}, $lower, $upper, $var_a{$name}, $var_R{$name};
}
}
# STEP. Play two games (with alternating colors) and obtain the result (2, 1, 0, -1, -2) from eng1 perspective.
my $result = ($simulate ? simulate_2games(\%var_eng1, \%var_eng2) : engine_2games(\%var_eng1, \%var_eng2));
# STEP. Apply the result
{
lock($shared_lock);
my $logLine = "$iter";
foreach $row (@variables)
{
my $name = $row->[$VAR_NAME];
$shared_theta{$name} += ($var_a{$name} * $result) / ($var_c{$name} * $var_delta{$name});
$shared_theta{$name} = max(min($shared_theta{$name}, $var_max{$name}), $var_min{$name});
$logLine .= ",$shared_theta{$name}";
}
print LOG "$logLine\n"
}
}
# STEP. Close log
close(GAMELOG);
}
### SECTION. Simulating a game
sub simulate_ELO
{
my ($var) = @_;
my $ELO = 0.0;
foreach my $key (keys(%$var))
{
my $a = -0.0001 * $variableIdx{$key}[$VAR_SIMUL_ELO];
$ELO += $a * $var->{$key} ** 2;
}
return $ELO;
}
sub simulate_winPerc
{
my ($ELO_A, $ELO_B) = @_;
my $Q_A = 10 ** ($ELO_A / 400);
my $Q_B = 10 ** ($ELO_B / 400);
return $Q_A / ($Q_A + $Q_B);
}
sub simulate_2games
{
my ($var_eng1, $var_eng2) = @_;
my $eng1_elo = simulate_ELO($var_eng1);
my $eng2_elo = simulate_ELO($var_eng2);
my $eng1_winperc = simulate_winPerc($eng1_elo, $eng2_elo);
return (rand() < $eng1_winperc ? 1 : -1) + (rand() < $eng1_winperc ? 1 : -1);
}
### SECTION. Playing a game
my @fenlines;
my ($eng1_pid, $eng2_pid);
local (*Eng1_Reader, *Eng1_Writer);
local (*Eng2_Reader, *Eng2_Writer);
sub engine_init
{
# STEP. Read opening book.
open(INPUT, "<$epd_path");
binmode(INPUT);
my @lines;
(@lines) = <INPUT>;
@fenlines = grep {/\w+/} @lines; # Filter out empty lines
chomp(@fenlines);
close (INPUT);
die "epd read failure!" if ($#fenlines == -1);
# STEP. Launch engines.
$eng1_pid = open2(\*Eng1_Reader, \*Eng1_Writer, $eng1_path);
$eng2_pid = open2(\*Eng2_Reader, \*Eng2_Writer, $eng2_path);
# STEP. Init engines
my $line;
print Eng1_Writer "uci\n";
print Eng2_Writer "uci\n";
print Eng1_Writer "setoption name UCI_Variant value $variant\n";
print Eng2_Writer "setoption name UCI_Variant value $variant\n";
while(($line = engine_readline(\*Eng1_Reader)) ne "uciok")
{
print "Engine 1: $line\n";
}
while(($line = engine_readline(\*Eng2_Reader)) ne "uciok")
{
print "Engine 2: $line\n";
}
}
sub engine_quit
{
print Eng1_Writer "quit\n";
print Eng2_Writer "quit\n";
waitpid($eng1_pid, 0);
waitpid($eng2_pid, 0);
}
sub engine_readline
{
my ($Reader) = @_;
local $/ = $IS_WINDOWS ? "\r\n" : "\n";
my $line = <$Reader>;
chomp $line;
return $line;
}
sub engine_2games
{
my ($var_eng1, $var_eng2) = @_;
my $result = 0;
my $line;
# STEP. Choose a random opening
my $rand_i = int(rand($#fenlines + 1));
my @tmparray = split(/\;/, $fenlines[$rand_i]);
my $fenline = $tmparray[0];
@tmparray = split(/ /, $fenline);
my $side_to_start = $tmparray[1]; #'b' or 'w'
# STEP. Send rounded values to engines
foreach my $var (keys(%$var_eng1))
{
my $val1 = nearest(1, $var_eng1->{$var});
my $val2 = nearest(1, $var_eng2->{$var});
print Eng1_Writer "setoption name $var value $val1\n";
print Eng2_Writer "setoption name $var value $val2\n";
}
# STEP. Play two games
for (my $eng1_is_white = 0; $eng1_is_white < 2; $eng1_is_white++)
{
# STEP. Tell engines to prepare for a new game
print Eng1_Writer "ucinewgame\n";
print Eng2_Writer "ucinewgame\n";
print Eng1_Writer "isready\n";
print Eng2_Writer "isready\n";
# STEP. Wait for engines to be ready
while(($line = engine_readline(\*Eng1_Reader)) ne "readyok")
{
print "Engine 1: $line\n";
}
while(($line = engine_readline(\*Eng2_Reader)) ne "readyok")
{
print "Engine 2: $line\n";
}
# STEP. Init Thinking times
my $eng1_time = $base_time;
my $eng2_time = $base_time;
# STEP. Check which engine should start?
my $engine_to_move = ($eng1_is_white == 1 && $side_to_start eq 'w') || ($eng1_is_white == 0 && $side_to_start eq 'b') ? 1 : 2;
print GAMELOG "Starting game using opening fen: $fenline (opening line $rand_i). Engine to start: $engine_to_move\n";
# STEP. Init game variabless
my $moves = '';
my $winner = 0;
my $draw_counter = 0;
my @win_counter = (0, 0, 0);
GAME: while(1)
{
my $wtime = nearest_floor(1, $eng1_is_white == 1 ? $eng1_time : $eng2_time);
my $btime = nearest_floor(1, $eng1_is_white == 0 ? $eng1_time : $eng2_time);
my $Curr_Writer = ($engine_to_move == 1 ? \*Eng1_Writer : \*Eng2_Writer);
my $Curr_Reader = ($engine_to_move == 1 ? \*Eng1_Reader : \*Eng2_Reader);
# STEP. Send engine the current positionn
print $Curr_Writer "position fen $fenline" . ($moves ne '' ? " moves $moves" : "") . "\n";
print GAMELOG "Engine " . ($engine_to_move == 1 ? '1' : '2') . " starts thinking. Time: " .
sprintf("%d", $engine_to_move == 1 ? $eng1_time : $eng2_time) . " Moves: $moves \n";
# STEP. Let it go!
my $t0 = time;
print $Curr_Writer "go wtime $wtime btime $btime winc $inc_time binc $inc_time\n";
# STEP. Read output from engine until it prints the bestmove.
my $score = 0;
my $flag_mate = 0;
my $flag_stalemate = 0;
READ: while($line = engine_readline($Curr_Reader))
{
my @array = split(/ /, $line);
# When engine is done, it prints bestmove.
if ($#array >= 0 && $array[0] eq 'bestmove') {
$flag_stalemate = 1 if ($array[1] eq '(none)');
$moves = $moves . " " . $array[1];
last READ;
}
# Check for mate in one
if ($#array >= 9 && $array[0] eq 'info' && $array[1] eq 'depth' &&
$array[7] eq 'score' && $array[8] eq 'mate' && $array[9] eq '1')
{
$flag_mate = 1;
$winner = $engine_to_move;
}
# Record score
if ($#array >= 7 && $array[0] eq 'info' && $array[1] eq 'depth' &&
$array[7] eq 'score')
{
$score = $array[9] if ($array[8] eq 'cp');
$score = +100000 if ($array[8] eq 'mate' && $array[9] > 0);
$score = -100000 if ($array[8] eq 'mate' && $array[9] < 0);
}
}
print GAMELOG "Score: $score\n" if defined($score);
# STEP. Update thinking times
my $elapsed = time - $t0;
$eng1_time = $eng1_time - ($engine_to_move == 1 ? $elapsed * 1000 - $inc_time : 0);
$eng2_time = $eng2_time - ($engine_to_move == 2 ? $elapsed * 1000 - $inc_time : 0);
# STEP. Check for mate and stalemate
if ($flag_mate)
{
$winner = $engine_to_move;
last GAME;
}
if ($flag_stalemate)
{
$winner = 0;
last GAME;
}
# STEP. Update draw counter
$draw_counter = (abs($score) <= $draw_score_limit ? $draw_counter + 1 : 0);
print GAMELOG "Draw Counter: $draw_counter / $draw_move_limit\n" if ($draw_counter);
if ($draw_counter >= $draw_move_limit)
{
$winner = 0;
last GAME;
}
# STEP. Update win counters
my $us = $engine_to_move;
my $them = $engine_to_move == 1 ? 2 : 1;
$win_counter[$us] = ($score >= +$win_score_limit ? $win_counter[$us] + 1 : 0);
$win_counter[$them] = ($score <= -$win_score_limit ? $win_counter[$them] + 1 : 0);
print GAMELOG "Win Counter: $win_counter[$us] / $win_move_limit\n" if ($win_counter[$us]);
print GAMELOG "Loss Counter: $win_counter[$them] / $win_move_limit\n" if ($win_counter[$them]);
if ($win_counter[$us] >= $win_move_limit)
{
$winner = $us;
last GAME;
}
if ($win_counter[$them] >= $win_move_limit)
{
$winner = $them;
last GAME;
}
# STEP. Change turn
$engine_to_move = $them;
}
# STEP. Record the result
print GAMELOG "Winner: $winner\n";
$result += ($winner == 1 ? 1 : $winner == 2 ? -1 : 0);
}
# Calculate Elo loss among (-400, -191, 0, 191, 400) normalized to [-2.0, 2.0]
return (-2.0, -0.955, 0, 0.955, 2.0)[$result + 2];
}