Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
slave2worker cont'd
[simgrid.git] / examples / msg / energy-ptask / energy-ptask.c
1 /* Copyright (c) 2007-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "simgrid/msg.h"
8 #include "simgrid/plugins/energy.h"
9
10 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example");
11
12 /** @addtogroup MSG_examples
13  * 
14  * - <b>parallel_task/parallel_task.c</b>: Demonstrates the use of @ref MSG_parallel_task_create, to create special
15  *   tasks that run on several hosts at the same time. The resulting simulations are very close to what can be
16  *   achieved in @ref SD_API, but still allows to use the other features of MSG (it'd be cool to be able to mix
17  *   interfaces, but it's not possible ATM).
18  */
19
20 static int runner(int argc, char *argv[])
21 {
22   /* Retrieve the list of all hosts as an array of hosts */
23   int hosts_count = MSG_get_host_number();
24   msg_host_t *hosts = xbt_dynar_to_array(MSG_hosts_as_dynar());
25
26   XBT_INFO("First, build a classical parallel task, with 1 Gflop to execute on each node, "
27            "and 10MB to exchange between each pair");
28   double *computation_amounts = xbt_new0(double, hosts_count);
29   double *communication_amounts = xbt_new0(double, hosts_count * hosts_count);
30
31   for (int i = 0; i < hosts_count; i++)
32     computation_amounts[i] = 1e9; // 1 Gflop
33
34   for (int i = 0; i < hosts_count; i++)
35     for (int j = i + 1; j < hosts_count; j++)
36       communication_amounts[i * hosts_count + j] = 1e7; // 10 MB
37
38   msg_task_t ptask =
39     MSG_parallel_task_create("parallel task", hosts_count, hosts, computation_amounts, communication_amounts, NULL);
40   MSG_parallel_task_execute(ptask);
41   MSG_task_destroy(ptask);
42   /* The arrays communication_amounts and computation_amounts are not to be freed manually */
43
44   XBT_INFO("Then, build a parallel task involving only computations and no communication (1 Gflop per node)");
45   computation_amounts = xbt_new0(double, hosts_count);
46   for (int i = 0; i < hosts_count; i++)
47     computation_amounts[i] = 1e9; // 1 Gflop
48   ptask = MSG_parallel_task_create("parallel exec", hosts_count, hosts, computation_amounts, NULL/* no comm */, NULL);
49   MSG_parallel_task_execute(ptask);
50   MSG_task_destroy(ptask);
51
52   XBT_INFO("Finally, trick the ptask to do a 'remote execution', on host %s", MSG_host_get_name(hosts[1]));
53   computation_amounts = xbt_new0(double, 1);
54   computation_amounts[0] = 1e9; // 1 Gflop
55   msg_host_t *remote = xbt_new(msg_host_t,1);
56   remote[0] = hosts[1];
57   ptask = MSG_parallel_task_create("remote exec", 1, remote, computation_amounts, NULL/* no comm */, NULL);
58   MSG_parallel_task_execute(ptask);
59   MSG_task_destroy(ptask);
60   free(remote);
61
62   XBT_INFO("Goodbye now!");
63   free(hosts);
64   return 0;
65 }
66
67 int main(int argc, char *argv[])
68 {
69   MSG_init(&argc, argv);
70   MSG_config("host/model", "ptask_L07");
71
72   xbt_assert(argc <= 3, "1Usage: %s <platform file> [--energy]", argv[0]);
73   xbt_assert(argc >= 2, "2Usage: %s <platform file> [--energy]", argv[0]);
74
75   if(argc == 3 && argv[2][2] == 'e')
76     sg_energy_plugin_init();
77
78   MSG_create_environment(argv[1]);
79
80   /* Pick a process, no matter which, from the platform file */
81   xbt_dynar_t all_hosts = MSG_hosts_as_dynar();
82   msg_host_t first_host = xbt_dynar_getfirst_as(all_hosts,msg_host_t);
83   xbt_dynar_free(&all_hosts);
84
85   MSG_process_create("test", runner, NULL, first_host);
86   msg_error_t res = MSG_main();
87   XBT_INFO("Simulation done.");
88
89   return res != MSG_OK;
90 }