1 /* This is a master for the "distributed" engine. It receives connections
2 * from slave machines, sends them gtp commands, then aggregates the
3 * results. It can also act as a proxy for the logs of all slave machines.
4 * The slave machines must run with engine "uct" (not "distributed").
5 * The master sends pachi-genmoves gtp commands regularly to each slave,
6 * gets as replies a list of candidate moves, their number of playouts
7 * and their value. The master then picks the most popular move. */
9 /* With time control, the master waits for all slaves, except
10 * when the allowed time is already passed. In this case the
11 * master picks among the available replies, or waits for just
12 * one reply if there is none yet.
13 * Without time control, the master waits until the desired
14 * number of games have been simulated. In this case the -t
15 * parameter for the master should be the sum of the parameters
18 /* The master sends updated statistics for the best moves
19 * in each genmoves command. In this version only the
20 * children of the root node are updated. The slaves
21 * reply with just their own stats; they remember what was
22 * previously received from or sent to the master, to
23 * distinguish their own contribution from that of other slaves. */
25 /* The master-slave protocol has has fault tolerance. If a slave is
26 * out of sync, the master sends it the appropriate command history. */
28 /* Pass me arguments like a=b,c=d,...
29 * Supported arguments:
30 * slave_port=SLAVE_PORT slaves connect to this port; this parameter is mandatory.
31 * max_slaves=MAX_SLAVES default 100
32 * slaves_quit=0|1 quit gtp command also sent to slaves, default false.
33 * proxy_port=PROXY_PORT slaves optionally send their logs to this port.
34 * Warning: with proxy_port, the master stderr mixes the logs of all
35 * machines but you can separate them again:
36 * slave logs: sed -n '/< .*:/s/.*< /< /p' logfile
37 * master logs: perl -0777 -pe 's/<[ <].*:.*\n//g' logfile
40 /* A configuration without proxy would have one master run on masterhost as:
41 * zzgo -e distributed slave_port=1234
42 * and N slaves running as:
43 * zzgo -e uct -g masterhost:1234 slave
45 * zzgo -e distributed slave_port=1234,proxy_port=1235
46 * zzgo -e uct -g masterhost:1234 -l masterhost:1235 slave
47 * If the master itself runs on a machine other than that running gogui,
48 * gogui-twogtp, kgsGtp or cgosGtp, it can redirect its gtp port:
49 * zzgo -e distributed -g 10000 slave_port=1234,proxy_port=1235
61 #include <sys/types.h>
62 #include <sys/socket.h>
63 #include <arpa/inet.h>
77 #include "distributed/distributed.h"
79 /* Internal engine state. */
85 struct move my_last_move
;
86 struct move_stats my_last_stats
;
89 /* Default number of simulations to perform per move.
90 * Note that this is in total over all slaves! */
91 #define DIST_GAMES 80000
92 static const struct time_info default_ti
= {
95 .len
= { .games
= DIST_GAMES
},
98 #define get_value(value, color) \
99 ((color) == S_BLACK ? (value) : 1 - (value))
101 /* Max size for one line of reply or slave log. */
104 /* Max size of all gtp commands for one game.
105 * 60 chars for the first line of genmoves plus 100 lines
106 * of 30 chars each for the stats at last move. */
107 #define CMDS_SIZE (60*MAX_GAMELEN + 30*100)
109 /* All gtp commands for current game separated by \n */
110 static char gtp_cmds
[CMDS_SIZE
];
112 /* Latest gtp command sent to slaves. */
113 static char *gtp_cmd
= NULL
;
115 /* Slaves send gtp_cmd when cmd_count changes. */
116 static int cmd_count
= 0;
118 /* Remember at most 12 gtp ids per move: play pass,
119 * 10 genmoves (1s), play pass.
120 * For move 0 we always resend the whole history. */
121 #define MAX_CMDS_PER_MOVE 12
123 /* History of gtp commands sent for current game, indexed by move. */
124 static int id_history
[MAX_GAMELEN
][MAX_CMDS_PER_MOVE
];
125 static char *cmd_history
[MAX_GAMELEN
][MAX_CMDS_PER_MOVE
];
127 /* Number of active slave machines working for this master. */
128 static int active_slaves
= 0;
130 /* Number of replies to last gtp command already received. */
131 static int reply_count
= 0;
133 /* All replies to latest gtp command are in gtp_replies[0..reply_count-1]. */
134 static char **gtp_replies
;
136 /* Mutex protecting gtp_cmds, gtp_cmd, id_history, cmd_history,
137 * cmd_count, active_slaves, reply_count & gtp_replies */
138 static pthread_mutex_t slave_lock
= PTHREAD_MUTEX_INITIALIZER
;
140 /* Condition signaled when a new gtp command is available. */
141 static pthread_cond_t cmd_cond
= PTHREAD_COND_INITIALIZER
;
143 /* Condition signaled when reply_count increases. */
144 static pthread_cond_t reply_cond
= PTHREAD_COND_INITIALIZER
;
146 /* Mutex protecting stderr. Must not be held at same time as slave_lock. */
147 static pthread_mutex_t log_lock
= PTHREAD_MUTEX_INITIALIZER
;
149 /* Absolute time when this program was started.
150 * For debugging only. */
151 static double start_time
;
153 /* Write the time, client address, prefix, and string s to stderr atomically.
154 * s should end with a \n */
156 logline(struct in_addr
*client
, char *prefix
, char *s
)
158 double now
= time_now();
159 char addr
[INET_ADDRSTRLEN
];
161 inet_ntop(AF_INET
, client
, addr
, sizeof(addr
));
165 pthread_mutex_lock(&log_lock
);
166 fprintf(stderr
, "%s%15s %9.3f: %s", prefix
, addr
, now
- start_time
, s
);
167 pthread_mutex_unlock(&log_lock
);
170 /* Thread opening a connection on the given socket and copying input
171 * from there to stderr. */
173 proxy_thread(void *arg
)
175 int proxy_sock
= (long)arg
;
176 assert(proxy_sock
>= 0);
178 struct in_addr client
;
179 int conn
= open_server_connection(proxy_sock
, &client
);
180 FILE *f
= fdopen(conn
, "r");
182 while (fgets(buf
, BSIZE
, f
)) {
183 logline(&client
, "< ", buf
);
189 /* Get a reply to one gtp command. Return the gtp command id,
190 * or -1 if error. reply must have at least CMDS_SIZE bytes.
191 * slave_lock is not held on either entry or exit of this function. */
193 get_reply(FILE *f
, struct in_addr client
, char *reply
)
198 while (fgets(line
, reply
+ CMDS_SIZE
- line
, f
) && *line
!= '\n') {
199 if (DEBUGL(3) || (DEBUGL(2) && line
== reply
))
200 logline(&client
, "<<", line
);
201 if (reply_id
< 0 && (*line
== '=' || *line
== '?') && isdigit(line
[1]))
202 reply_id
= atoi(line
+1);
203 line
+= strlen(line
);
205 if (*line
!= '\n') return -1;
209 /* Main loop of a slave thread.
210 * Send the current command to the slave machine and wait for a reply.
211 * Resend command history if the slave machine is out of sync.
212 * Returns when the connection with the slave machine is cut.
213 * slave_lock is held on both entry and exit of this function. */
215 slave_loop(FILE *f
, struct in_addr client
, char *reply_buf
, bool resend
)
217 char *to_send
= gtp_cmd
;
218 int last_cmd_sent
= 0;
219 int last_reply_id
= -1;
222 while (last_cmd_sent
== cmd_count
&& !resend
) {
223 // Wait for a new gtp command.
224 pthread_cond_wait(&cmd_cond
, &slave_lock
);
228 /* Command available, send it to slave machine.
229 * If slave was out of sync, send the history. */
230 assert(to_send
&& gtp_cmd
);
232 strncpy(buf
, to_send
, CMDS_SIZE
);
233 last_cmd_sent
= cmd_count
;
235 pthread_mutex_unlock(&slave_lock
);
237 if (DEBUGL(1) && resend
) {
238 if (to_send
== gtp_cmds
) {
239 logline(&client
, "? ", "Slave out-of-sync, resending all history\n");
241 logline(&client
, "? ", "Slave behind, partial resend\n");
248 char *s
= strchr(buf
, '\n');
251 logline(&client
, ">>", buf
);
254 /* Read the reply, which always ends with \n\n
255 * The slave machine sends "=id reply" or "?id reply"
256 * with id == cmd_id if it is in sync. */
257 int reply_id
= get_reply(f
, client
, buf
);
259 pthread_mutex_lock(&slave_lock
);
260 if (reply_id
== -1) return;
262 /* Make sure we are still in sync. cmd_count may have
263 * changed but the reply is valid as long as cmd_id didn't
264 * change (this only occurs for consecutive genmoves). */
265 int cmd_id
= atoi(gtp_cmd
);
266 if (reply_id
== cmd_id
&& *buf
== '=') {
268 strncpy(reply_buf
, buf
, CMDS_SIZE
);
269 if (reply_id
!= last_reply_id
)
270 reply_slot
= reply_count
++;
271 gtp_replies
[reply_slot
] = reply_buf
;
272 last_reply_id
= reply_id
;
274 pthread_cond_signal(&reply_cond
);
276 /* Force waiting for a new command. The next genmoves
277 * stats we will send must include those just received
278 * (this assumed by the slave). */
279 last_cmd_sent
= cmd_count
;
284 /* Resend everything if slave got latest command,
285 * but doesn't have a correct board. */
286 if (reply_id
== cmd_id
) continue;
288 /* The slave is ouf-of-sync. Check whether the last command
289 * it received belongs to the current game. If so resend
290 * starting at the last move known by slave, otherwise
291 * resend the whole history. */
292 int reply_move
= move_number(reply_id
);
293 if (reply_move
> move_number(cmd_id
)) continue;
295 for (int slot
= 0; slot
< MAX_CMDS_PER_MOVE
; slot
++) {
296 if (reply_id
== id_history
[reply_move
][slot
]) {
297 to_send
= cmd_history
[reply_move
][slot
];
304 /* Thread sending gtp commands to one slave machine, and
305 * reading replies. If a slave machine dies, this thread waits
306 * for a connection from another slave. */
308 slave_thread(void *arg
)
310 int slave_sock
= (long)arg
;
311 assert(slave_sock
>= 0);
312 char reply_buf
[CMDS_SIZE
];
316 /* Wait for a connection from any slave. */
317 struct in_addr client
;
318 int conn
= open_server_connection(slave_sock
, &client
);
320 FILE *f
= fdopen(conn
, "r+");
322 logline(&client
, "= ", "new slave\n");
324 /* Minimal check of the slave identity. */
326 if (!fgets(reply_buf
, sizeof(reply_buf
), f
)
327 || strncasecmp(reply_buf
, "= Pachi", 7)
328 || !fgets(reply_buf
, sizeof(reply_buf
), f
)
329 || strcmp(reply_buf
, "\n")) {
330 logline(&client
, "? ", "bad slave\n");
335 pthread_mutex_lock(&slave_lock
);
337 slave_loop(f
, client
, reply_buf
, resend
);
339 assert(active_slaves
> 0);
341 // Unblock main thread if it was waiting for this slave.
342 pthread_cond_signal(&reply_cond
);
343 pthread_mutex_unlock(&slave_lock
);
347 logline(&client
, "= ", "lost slave\n");
352 /* Create a new gtp command for all slaves. The slave lock is held
353 * upon entry and upon return, so the command will actually be
354 * sent when the lock is released. The last command is overwritten
355 * if gtp_cmd points to a non-empty string. cmd is a single word;
356 * args has all arguments and is empty or has a trailing \n */
358 update_cmd(struct board
*b
, char *cmd
, char *args
, bool new_id
)
361 /* To make sure the slaves are in sync, we ignore the original id
362 * and use the board number plus some random bits as gtp id. */
363 static int gtp_id
= -1;
364 int moves
= is_reset(cmd
) ? 0 : b
->moves
;
366 /* fast_random() is 16-bit only so the multiplication can't overflow. */
367 gtp_id
= force_reply(moves
+ fast_random(65535) * DIST_GAMELEN
);
370 snprintf(gtp_cmd
, gtp_cmds
+ CMDS_SIZE
- gtp_cmd
, "%d %s %s",
371 gtp_id
, cmd
, *args
? args
: "\n");
374 /* Remember history for out-of-sync slaves. */
376 slot
= (slot
+ 1) % MAX_CMDS_PER_MOVE
;
377 id_history
[moves
][slot
] = gtp_id
;
378 cmd_history
[moves
][slot
] = gtp_cmd
;
380 // Notify the slave threads about the new command.
381 pthread_cond_broadcast(&cmd_cond
);
384 /* Update the command history, then create a new gtp command
385 * for all slaves. The slave lock is held upon entry and
386 * upon return, so the command will actually be sent when the
387 * lock is released. cmd is a single word; args has all
388 * arguments and is empty or has a trailing \n */
390 new_cmd(struct board
*b
, char *cmd
, char *args
)
392 // Clear the history when a new game starts:
393 if (!gtp_cmd
|| is_gamestart(cmd
)) {
396 /* Preserve command history for new slaves.
397 * To indicate that the slave should only reply to
398 * the last command we force the id of previous
399 * commands to be just the move number. */
400 int id
= prevent_reply(atoi(gtp_cmd
));
401 int len
= strspn(gtp_cmd
, "0123456789");
403 snprintf(buf
, sizeof(buf
), "%0*d", len
, id
);
404 memcpy(gtp_cmd
, buf
, len
);
406 gtp_cmd
+= strlen(gtp_cmd
);
409 // Let the slave threads send the new gtp command:
410 update_cmd(b
, cmd
, args
, true);
413 /* Wait for at least one new reply. Return when all slaves have
414 * replied, or when the given absolute time is passed.
415 * The replies are returned in gtp_replies[0..reply_count-1]
416 * slave_lock is held on entry and on return. */
418 get_replies(double time_limit
)
421 if (reply_count
> 0) {
424 ts
.tv_nsec
= (int)(modf(time_limit
, &sec
)*1000000000.0);
425 ts
.tv_sec
= (int)sec
;
426 pthread_cond_timedwait(&reply_cond
, &slave_lock
, &ts
);
428 pthread_cond_wait(&reply_cond
, &slave_lock
);
430 if (reply_count
== 0) continue;
431 if (reply_count
>= active_slaves
) return;
432 if (time_now() >= time_limit
) break;
436 snprintf(buf
, sizeof(buf
),
437 "get_replies timeout %.3f >= %.3f, replies %d < active %d\n",
438 time_now() - start_time
, time_limit
- start_time
,
439 reply_count
, active_slaves
);
440 logline(NULL
, "? ", buf
);
442 assert(reply_count
> 0);
445 /* Maximum time (seconds) to wait for answers to fast gtp commands
446 * (all commands except pachi-genmoves and final_status_list). */
447 #define MAX_FAST_CMD_WAIT 1.0
449 /* How often to send a stats update to slaves (seconds) */
450 #define STATS_UPDATE_INTERVAL 0.1 /* 100ms */
452 /* Maximum time (seconds) to wait between genmoves
453 * (all commands except pachi-genmoves and final_status_list). */
454 #define MAX_FAST_CMD_WAIT 1.0
456 /* Dispatch a new gtp command to all slaves.
457 * The slave lock must not be held upon entry and is released upon return.
458 * args is empty or ends with '\n' */
459 static enum parse_code
460 distributed_notify(struct engine
*e
, struct board
*b
, int id
, char *cmd
, char *args
, char **reply
)
462 struct distributed
*dist
= e
->data
;
464 /* Commands that should not be sent to slaves.
465 * time_left will be part of next pachi-genmoves,
466 * we reduce latency by not forwarding it here. */
467 if ((!strcasecmp(cmd
, "quit") && !dist
->slaves_quit
)
468 || !strcasecmp(cmd
, "uct_genbook")
469 || !strcasecmp(cmd
, "uct_dumpbook")
470 || !strcasecmp(cmd
, "kgs-chat")
471 || !strcasecmp(cmd
, "time_left")
473 /* and commands that will be sent to slaves later */
474 || !strcasecmp(cmd
, "genmove")
475 || !strcasecmp(cmd
, "kgs-genmove_cleanup")
476 || !strcasecmp(cmd
, "final_score")
477 || !strcasecmp(cmd
, "final_status_list"))
480 pthread_mutex_lock(&slave_lock
);
482 // Create a new command to be sent by the slave threads.
483 new_cmd(b
, cmd
, args
);
485 /* Wait for replies here. If we don't wait, we run the
486 * risk of getting out of sync with most slaves and
487 * sending command history too frequently. */
488 get_replies(time_now() + MAX_FAST_CMD_WAIT
);
490 pthread_mutex_unlock(&slave_lock
);
494 /* genmoves returns a line "=id played_own total_playouts threads keep_looking[ reserved]"
495 * then a list of lines "coord playouts value amaf_playouts amaf_value".
496 * Return the move with most playouts, and additional stats.
497 * Keep this code in sync with uct_getstats().
498 * slave_lock is held on entry and on return. */
500 select_best_move(struct board
*b
, struct move_stats2
*stats
, int *played
,
501 int *total_playouts
, int *total_threads
, bool *keep_looking
)
503 assert(reply_count
> 0);
505 /* +2 for pass and resign */
506 memset(stats
-2, 0, (board_size2(b
)+2) * sizeof(*stats
));
508 coord_t best_move
= pass
;
509 int best_playouts
= -1;
515 for (int reply
= 0; reply
< reply_count
; reply
++) {
516 char *r
= gtp_replies
[reply
];
518 if (sscanf(r
, "=%d %d %d %d %d", &id
, &o
, &p
, &t
, &k
) != 5) continue;
520 *total_playouts
+= p
;
523 // Skip the rest of the firt line if any (allow future extensions)
527 struct move_stats2 s
;
528 while (r
&& sscanf(++r
, "%63s %d %f %d %f", move
, &s
.u
.playouts
,
529 &s
.u
.value
, &s
.amaf
.playouts
, &s
.amaf
.value
) == 5) {
530 coord_t
*c
= str2coord(move
, board_size(b
));
531 stats_add_result(&stats
[*c
].u
, s
.u
.value
, s
.u
.playouts
);
532 stats_add_result(&stats
[*c
].amaf
, s
.amaf
.value
, s
.amaf
.playouts
);
534 if (stats
[*c
].u
.playouts
> best_playouts
) {
535 best_playouts
= stats
[*c
].u
.playouts
;
542 *keep_looking
= keep
> reply_count
/ 2;
546 /* Set the args for the genmoves command. If stats is not null,
547 * append the stats from all slaves above min_playouts, except
548 * for pass and resign. args must have CMDS_SIZE bytes and
549 * upon return ends with an empty line.
550 * Keep this code in sync with uct_genmoves().
551 * slave_lock is held on entry and on return. */
553 genmoves_args(char *args
, struct board
*b
, enum stone color
, int played
,
554 struct time_info
*ti
, struct move_stats2
*stats
, int min_playouts
)
556 char *end
= args
+ CMDS_SIZE
;
557 char *s
= args
+ snprintf(args
, CMDS_SIZE
, "%s %d", stone2str(color
), played
);
559 if (ti
->dim
== TD_WALLTIME
) {
560 s
+= snprintf(s
, end
- s
, " %.3f %.3f %d %d",
561 ti
->len
.t
.main_time
, ti
->len
.t
.byoyomi_time
,
562 ti
->len
.t
.byoyomi_periods
, ti
->len
.t
.byoyomi_stones
);
564 s
+= snprintf(s
, end
- s
, "\n");
567 if (stats
[c
].u
.playouts
<= min_playouts
) continue;
568 s
+= snprintf(s
, end
- s
, "%s %d %.7f %d %.7f\n",
570 stats
[c
].u
.playouts
, stats
[c
].u
.value
,
571 stats
[c
].amaf
.playouts
, stats
[c
].amaf
.value
);
574 s
+= snprintf(s
, end
- s
, "\n");
577 /* Time control is mostly done by the slaves, so we use default values here. */
578 #define FUSEKI_END 20
579 #define YOSE_START 40
582 distributed_genmove(struct engine
*e
, struct board
*b
, struct time_info
*ti
,
583 enum stone color
, bool pass_all_alive
)
585 struct distributed
*dist
= e
->data
;
586 double now
= time_now();
589 char *cmd
= pass_all_alive
? "pachi-genmoves_cleanup" : "pachi-genmoves";
590 char args
[CMDS_SIZE
];
593 int played
, playouts
, threads
;
595 if (ti
->period
== TT_NULL
) *ti
= default_ti
;
596 struct time_stop stop
;
597 time_stop_conditions(ti
, b
, FUSEKI_END
, YOSE_START
, &stop
);
598 struct time_info saved_ti
= *ti
;
600 /* Send the first genmoves without stats. */
601 genmoves_args(args
, b
, color
, 0, ti
, NULL
, 0);
603 /* Combined move stats from all slaves, only for children
604 * of the root node, plus 2 for pass and resign. */
605 struct move_stats2
*stats
= alloca((board_size2(b
)+2) * sizeof(struct move_stats2
));
608 pthread_mutex_lock(&slave_lock
);
609 new_cmd(b
, cmd
, args
);
611 /* Loop until most slaves want to quit or time elapsed. */
614 get_replies(now
+ STATS_UPDATE_INTERVAL
);
616 if (ti
->dim
== TD_WALLTIME
)
617 time_sub(ti
, now
- start
);
620 best
= select_best_move(b
, stats
, &played
, &playouts
, &threads
, &keep_looking
);
622 if (!keep_looking
) break;
623 if (ti
->dim
== TD_WALLTIME
) {
624 if (now
- ti
->len
.t
.timer_start
>= stop
.worst
.time
) break;
626 if (played
>= stop
.worst
.playouts
) break;
630 char *coord
= coord2sstr(best
, b
);
631 snprintf(buf
, sizeof(buf
),
632 "temp winner is %s %s with score %1.4f (%d/%d games)"
633 " %d slaves %d threads\n",
634 stone2str(color
), coord
, get_value(stats
[best
].u
.value
, color
),
635 stats
[best
].u
.playouts
, playouts
, reply_count
, threads
);
636 logline(NULL
, "* ", buf
);
638 /* Send the command with the same gtp id, to avoid discarding
639 * a reply to a previous genmoves at the same move. */
640 genmoves_args(args
, b
, color
, played
, ti
, stats
, stats
[best
].u
.playouts
/ 100);
641 update_cmd(b
, cmd
, args
, false);
643 int replies
= reply_count
;
645 /* Do not subtract time spent twice (see gtp_parse). */
648 dist
->my_last_move
.color
= color
;
649 dist
->my_last_move
.coord
= best
;
650 dist
->my_last_stats
= stats
[best
].u
;
652 /* Tell the slaves to commit to the selected move, overwriting
653 * the last "pachi-genmoves" in the command history. */
654 char *coord
= coord2str(best
, b
);
655 snprintf(args
, sizeof(args
), "%s %s\n", stone2str(color
), coord
);
656 update_cmd(b
, "play", args
, true);
657 pthread_mutex_unlock(&slave_lock
);
661 double time
= now
- first
+ 0.000001; /* avoid divide by zero */
662 snprintf(buf
, sizeof(buf
),
663 "GLOBAL WINNER is %s %s with score %1.4f (%d/%d games)\n"
664 "genmove %d games in %0.2fs %d slaves %d threads (%d games/s,"
665 " %d games/s/slave, %d games/s/thread)\n",
666 stone2str(color
), coord
, get_value(stats
[best
].u
.value
, color
),
667 stats
[best
].u
.playouts
, playouts
, played
, time
, replies
, threads
,
668 (int)(played
/time
), (int)(played
/time
/replies
),
669 (int)(played
/time
/threads
));
670 logline(NULL
, "* ", buf
);
673 return coord_copy(best
);
677 distributed_chat(struct engine
*e
, struct board
*b
, char *cmd
)
679 struct distributed
*dist
= e
->data
;
680 static char reply
[BSIZE
];
682 cmd
+= strspn(cmd
, " \n\t");
683 if (!strncasecmp(cmd
, "winrate", 7)) {
684 enum stone color
= dist
->my_last_move
.color
;
685 snprintf(reply
, BSIZE
, "In %d playouts at %d machines, %s %s can win with %.2f%% probability.",
686 dist
->my_last_stats
.playouts
, active_slaves
, stone2str(color
),
687 coord2sstr(dist
->my_last_move
.coord
, b
),
688 100 * get_value(dist
->my_last_stats
.value
, color
));
695 scmp(const void *p1
, const void *p2
)
697 return strcasecmp(*(char * const *)p1
, *(char * const *)p2
);
701 distributed_dead_group_list(struct engine
*e
, struct board
*b
, struct move_queue
*mq
)
703 pthread_mutex_lock(&slave_lock
);
705 new_cmd(b
, "final_status_list", "dead\n");
706 get_replies(time_now() + MAX_FAST_CMD_WAIT
);
708 /* Find the most popular reply. */
709 qsort(gtp_replies
, reply_count
, sizeof(char *), scmp
);
713 for (int reply
= 1; reply
< reply_count
; reply
++) {
714 if (!strcmp(gtp_replies
[reply
], gtp_replies
[reply
-1])) {
719 if (count
> best_count
) {
725 /* Pick the first move of each line as group. */
726 char *dead
= gtp_replies
[best_reply
];
727 dead
= strchr(dead
, ' '); // skip "id "
728 while (dead
&& *++dead
!= '\n') {
729 coord_t
*c
= str2coord(dead
, board_size(b
));
732 dead
= strchr(dead
, '\n');
734 pthread_mutex_unlock(&slave_lock
);
737 static struct distributed
*
738 distributed_state_init(char *arg
, struct board
*b
)
740 struct distributed
*dist
= calloc2(1, sizeof(struct distributed
));
742 dist
->max_slaves
= 100;
744 char *optspec
, *next
= arg
;
747 next
+= strcspn(next
, ",");
748 if (*next
) { *next
++ = 0; } else { *next
= 0; }
750 char *optname
= optspec
;
751 char *optval
= strchr(optspec
, '=');
752 if (optval
) *optval
++ = 0;
754 if (!strcasecmp(optname
, "slave_port") && optval
) {
755 dist
->slave_port
= strdup(optval
);
756 } else if (!strcasecmp(optname
, "proxy_port") && optval
) {
757 dist
->proxy_port
= strdup(optval
);
758 } else if (!strcasecmp(optname
, "max_slaves") && optval
) {
759 dist
->max_slaves
= atoi(optval
);
760 } else if (!strcasecmp(optname
, "slaves_quit")) {
761 dist
->slaves_quit
= !optval
|| atoi(optval
);
763 fprintf(stderr
, "distributed: Invalid engine argument %s or missing value\n", optname
);
768 gtp_replies
= calloc2(dist
->max_slaves
, sizeof(char *));
770 if (!dist
->slave_port
) {
771 fprintf(stderr
, "distributed: missing slave_port\n");
774 int slave_sock
= port_listen(dist
->slave_port
, dist
->max_slaves
);
776 for (int id
= 0; id
< dist
->max_slaves
; id
++) {
777 pthread_create(&thread
, NULL
, slave_thread
, (void *)(long)slave_sock
);
780 if (dist
->proxy_port
) {
781 int proxy_sock
= port_listen(dist
->proxy_port
, dist
->max_slaves
);
782 for (int id
= 0; id
< dist
->max_slaves
; id
++) {
783 pthread_create(&thread
, NULL
, proxy_thread
, (void *)(long)proxy_sock
);
790 engine_distributed_init(char *arg
, struct board
*b
)
792 start_time
= time_now();
793 struct distributed
*dist
= distributed_state_init(arg
, b
);
794 struct engine
*e
= calloc2(1, sizeof(struct engine
));
795 e
->name
= "Distributed Engine";
796 e
->comment
= "I'm playing the distributed engine. When I'm losing, I will resign, "
797 "if I think I win, I play until you pass. "
798 "Anyone can send me 'winrate' in private chat to get my assessment of the position.";
799 e
->notify
= distributed_notify
;
800 e
->genmove
= distributed_genmove
;
801 e
->dead_group_list
= distributed_dead_group_list
;
802 e
->chat
= distributed_chat
;
804 // Keep the threads and the open socket connections:
805 e
->keep_on_clear
= true;