From: Florian Forster Date: Sun, 13 Jul 2008 08:41:43 +0000 (+0200) Subject: src/sn-evolution.c: Make peers and #threads configurable at runtime. X-Git-Tag: v1.0.0~90^2 X-Git-Url: https://git.octo.it/?p=sort-networks.git;a=commitdiff_plain;h=6afcf3afbef32c7f16b12872b5aabcd7a6467786 src/sn-evolution.c: Make peers and #threads configurable at runtime. --- diff --git a/src/sn-evolution.c b/src/sn-evolution.c index 64da702..3c11adb 100644 --- a/src/sn-evolution.c +++ b/src/sn-evolution.c @@ -61,6 +61,8 @@ static int stats_interval = 0; static int max_population_size = 128; static population_t *population; +static int evolution_threads_num = 4; + static int do_loop = 0; static void sigint_handler (int signal) @@ -76,6 +78,8 @@ static void exit_usage (const char *name) " -i Initial input file (REQUIRED)\n" " -o Write the current best solution to \n" " -p Size of the population (default: 128)\n" + " -P Send individuals to (may be repeated)\n" + " -t Number of threads (default: 4)\n" "\n", name); exit (1); @@ -85,7 +89,7 @@ int read_options (int argc, char **argv) { int option; - while ((option = getopt (argc, argv, "i:o:p:P:s:h")) != -1) + while ((option = getopt (argc, argv, "i:o:p:P:s:t:h")) != -1) { switch (option) { @@ -109,7 +113,23 @@ int read_options (int argc, char **argv) { int tmp = atoi (optarg); if (tmp > 0) + { max_population_size = tmp; + population_set_size (population, (size_t) max_population_size); + } + break; + } + + case 'P': + { + int status; + + status = population_add_peer (population, optarg, /* port = */ NULL); + if (status != 0) + { + fprintf (stderr, "population_add_peer failed with status %i.\n", + status); + } break; } @@ -121,6 +141,14 @@ int read_options (int argc, char **argv) break; } + case 't': + { + int tmp = atoi (optarg); + if (tmp >= 1) + evolution_threads_num = tmp; + break; + } + case 'h': default: exit_usage (argv[0]); @@ -299,6 +327,19 @@ int main (int argc, char **argv) struct sigaction sigint_action; struct sigaction sigterm_action; + population = population_create ((pi_rate_f) rate_network, + (pi_copy_f) sn_network_clone, + (pi_free_f) sn_network_destroy); + if (population == NULL) + { + fprintf (stderr, "population_create failed.\n"); + return (1); + } + + population_set_serialization (population, + (pi_serialize_f) sn_network_serialize, + (pi_unserialize_f) sn_network_unserialize); + read_options (argc, argv); if (initial_input_file == NULL) exit_usage (argv[0]); @@ -311,14 +352,7 @@ int main (int argc, char **argv) sigterm_action.sa_handler = sigint_handler; sigaction (SIGTERM, &sigterm_action, NULL); - population = population_create ((pi_rate_f) rate_network, - (pi_copy_f) sn_network_clone, - (pi_free_f) sn_network_destroy); - if (population == NULL) - { - fprintf (stderr, "population_create failed.\n"); - return (1); - } + population_start_listen_thread (population, NULL, NULL); { sn_network_t *n; @@ -343,7 +377,7 @@ int main (int argc, char **argv) "=======================\n", initial_input_file, inputs_num, max_population_size); - evolution_start (3); + evolution_start (evolution_threads_num); printf ("Exiting after %llu iterations.\n", (unsigned long long) iteration_counter); @@ -356,8 +390,7 @@ int main (int argc, char **argv) { if (best_output_file != NULL) sn_network_write_file (n, best_output_file); - else - sn_network_show (n); + sn_network_show (n); sn_network_destroy (n); } }