Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
today is doomsday: platform.xml is sacrificed for the greater good
[simgrid.git] / examples / msg / cloud-capping / cloud-capping.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
9 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example");
10
11 /** @addtogroup MSG_examples
12  *
13  * - <b>cloud/bound.c</b>: Demonstrates the use of @ref MSG_task_set_bound
14  */
15
16 static int worker_main(int argc, char *argv[])
17 {
18   double computation_amount = xbt_str_parse_double(argv[1], "Invalid computation amount: %s");
19   int use_bound = xbt_str_parse_int(argv[2], "Second parameter (use_bound) should be 0 or 1 but is: %s");
20   double bound = xbt_str_parse_double(argv[3], "Invalid bound: %s");
21
22   double clock_sta = MSG_get_clock();
23
24   msg_task_t task = MSG_task_create("Task", computation_amount, 0, NULL);
25   if (use_bound)
26      MSG_task_set_bound(task, bound);
27   MSG_task_execute(task);
28   MSG_task_destroy(task);
29
30   double clock_end = MSG_get_clock();
31   double duration = clock_end - clock_sta;
32   double flops_per_sec = computation_amount / duration;
33
34   if (use_bound)
35     XBT_INFO("bound to %f => duration %f (%f flops/s)", bound, duration, flops_per_sec);
36   else
37     XBT_INFO("not bound => duration %f (%f flops/s)", duration, flops_per_sec);
38
39   return 0;
40 }
41
42 static void launch_worker(msg_host_t host, const char *pr_name, double computation_amount, int use_bound, double bound)
43 {
44   char **argv = xbt_new(char *, 5);
45   argv[0] = xbt_strdup(pr_name);
46   argv[1] = bprintf("%f", computation_amount);
47   argv[2] = bprintf("%d", use_bound);
48   argv[3] = bprintf("%f", bound);
49   argv[4] = NULL;
50
51   MSG_process_create_with_arguments(pr_name, worker_main, NULL, host, 4, argv);
52 }
53
54 static int worker_busy_loop_main(int argc, char *argv[])
55 {
56   msg_task_t *task = MSG_process_get_data(MSG_process_self());
57   MSG_task_execute(*task);
58   MSG_task_destroy(*task);
59
60   return 0;
61 }
62
63 /* FIXME: */
64 #define DOUBLE_MAX 1e11
65
66 static void test_dynamic_change(void)
67 {
68   msg_host_t pm0 = MSG_host_by_name("Fafard");
69
70   msg_host_t vm0 = MSG_vm_create_core(pm0, "VM0");
71   msg_host_t vm1 = MSG_vm_create_core(pm0, "VM1");
72   MSG_vm_start(vm0);
73   MSG_vm_start(vm1);
74
75   msg_task_t task0 = MSG_task_create("Task0", DOUBLE_MAX, 0, NULL);
76   msg_task_t task1 = MSG_task_create("Task1", DOUBLE_MAX, 0, NULL);
77   MSG_process_create("worker0", worker_busy_loop_main, &task0, vm0);
78   MSG_process_create("worker1", worker_busy_loop_main, &task1, vm1);
79
80   double task0_remain_prev = MSG_task_get_flops_amount(task0);
81   double task1_remain_prev = MSG_task_get_flops_amount(task1);
82
83   {
84     const double cpu_speed = MSG_host_get_speed(pm0);
85     int i = 0;
86     for (i = 0; i < 10; i++) {
87       double new_bound = (cpu_speed / 10) * i;
88       XBT_INFO("set bound of VM1 to %f", new_bound);
89       MSG_vm_set_bound(vm1, new_bound);
90       MSG_process_sleep(100);
91
92       double task0_remain_now = MSG_task_get_flops_amount(task0);
93       double task1_remain_now = MSG_task_get_flops_amount(task1);
94
95       double task0_flops_per_sec = task0_remain_prev - task0_remain_now;
96       double task1_flops_per_sec = task1_remain_prev - task1_remain_now;
97
98       XBT_INFO("Task0@VM0: %f flops/s", task0_flops_per_sec / 100);
99       XBT_INFO("Task1@VM1: %f flops/s", task1_flops_per_sec / 100);
100
101       task0_remain_prev = task0_remain_now;
102       task1_remain_prev = task1_remain_now;
103     }
104   }
105   MSG_process_sleep(2000); // let the tasks end
106
107   MSG_vm_destroy(vm0);
108   MSG_vm_destroy(vm1);
109 }
110
111 static void test_one_task(msg_host_t hostA)
112 {
113   const double cpu_speed = MSG_host_get_speed(hostA);
114   const double computation_amount = cpu_speed * 10;
115   const char *hostA_name = MSG_host_get_name(hostA);
116
117   XBT_INFO("### Test: with/without MSG_task_set_bound");
118
119   XBT_INFO("### Test: no bound for Task1@%s", hostA_name);
120   launch_worker(hostA, "worker0", computation_amount, 0, 0);
121
122   MSG_process_sleep(1000);
123
124   XBT_INFO("### Test: 50%% for Task1@%s", hostA_name);
125   launch_worker(hostA, "worker0", computation_amount, 1, cpu_speed / 2);
126
127   MSG_process_sleep(1000);
128
129   XBT_INFO("### Test: 33%% for Task1@%s", hostA_name);
130   launch_worker(hostA, "worker0", computation_amount, 1, cpu_speed / 3);
131
132   MSG_process_sleep(1000);
133
134   XBT_INFO("### Test: zero for Task1@%s (i.e., unlimited)", hostA_name);
135   launch_worker(hostA, "worker0", computation_amount, 1, 0);
136
137   MSG_process_sleep(1000);
138
139   XBT_INFO("### Test: 200%% for Task1@%s (i.e., meaningless)", hostA_name);
140   launch_worker(hostA, "worker0", computation_amount, 1, cpu_speed * 2);
141
142   MSG_process_sleep(1000);
143 }
144
145 static void test_two_tasks(msg_host_t hostA, msg_host_t hostB)
146 {
147   const double cpu_speed = MSG_host_get_speed(hostA);
148   xbt_assert(cpu_speed == MSG_host_get_speed(hostB));
149   const double computation_amount = cpu_speed * 10;
150   const char *hostA_name = MSG_host_get_name(hostA);
151   const char *hostB_name = MSG_host_get_name(hostB);
152
153   XBT_INFO("### Test: no bound for Task1@%s, no bound for Task2@%s", hostA_name, hostB_name);
154   launch_worker(hostA, "worker0", computation_amount, 0, 0);
155   launch_worker(hostB, "worker1", computation_amount, 0, 0);
156
157   MSG_process_sleep(1000);
158
159   XBT_INFO("### Test: 0 for Task1@%s, 0 for Task2@%s (i.e., unlimited)", hostA_name, hostB_name);
160   launch_worker(hostA, "worker0", computation_amount, 1, 0);
161   launch_worker(hostB, "worker1", computation_amount, 1, 0);
162
163   MSG_process_sleep(1000);
164
165   XBT_INFO("### Test: 50%% for Task1@%s, 50%% for Task2@%s", hostA_name, hostB_name);
166   launch_worker(hostA, "worker0", computation_amount, 1, cpu_speed / 2);
167   launch_worker(hostB, "worker1", computation_amount, 1, cpu_speed / 2);
168
169   MSG_process_sleep(1000);
170
171   XBT_INFO("### Test: 25%% for Task1@%s, 25%% for Task2@%s", hostA_name, hostB_name);
172   launch_worker(hostA, "worker0", computation_amount, 1, cpu_speed / 4);
173   launch_worker(hostB, "worker1", computation_amount, 1, cpu_speed / 4);
174
175   MSG_process_sleep(1000);
176
177   XBT_INFO("### Test: 75%% for Task1@%s, 100%% for Task2@%s", hostA_name, hostB_name);
178   launch_worker(hostA, "worker0", computation_amount, 1, cpu_speed * 0.75);
179   launch_worker(hostB, "worker1", computation_amount, 1, cpu_speed);
180
181   MSG_process_sleep(1000);
182
183   XBT_INFO("### Test: no bound for Task1@%s, 25%% for Task2@%s", hostA_name, hostB_name);
184   launch_worker(hostA, "worker0", computation_amount, 0, 0);
185   launch_worker(hostB, "worker1", computation_amount, 1, cpu_speed / 4);
186
187   MSG_process_sleep(1000);
188
189   XBT_INFO("### Test: 75%% for Task1@%s, 25%% for Task2@%s", hostA_name, hostB_name);
190   launch_worker(hostA, "worker0", computation_amount, 1, cpu_speed * 0.75);
191   launch_worker(hostB, "worker1", computation_amount, 1, cpu_speed / 4);
192
193   MSG_process_sleep(1000);
194 }
195
196 static int master_main(int argc, char *argv[])
197 {
198   msg_host_t pm0 = MSG_host_by_name("Fafard");
199   msg_host_t pm1 = MSG_host_by_name("Fafard");
200
201   XBT_INFO("# 1. Put a single task on a PM. ");
202   test_one_task(pm0);
203   XBT_INFO(" ");
204
205   XBT_INFO("# 2. Put two tasks on a PM.");
206   test_two_tasks(pm0, pm0);
207   XBT_INFO(" ");
208
209   msg_host_t vm0 = MSG_vm_create_core(pm0, "VM0");
210   MSG_vm_start(vm0);
211
212   XBT_INFO("# 3. Put a single task on a VM. ");
213   test_one_task(vm0);
214   XBT_INFO(" ");
215
216   XBT_INFO("# 4. Put two tasks on a VM.");
217   test_two_tasks(vm0, vm0);
218   XBT_INFO(" ");
219
220   MSG_vm_destroy(vm0);
221
222   vm0 = MSG_vm_create_core(pm0, "VM0");
223   MSG_vm_start(vm0);
224
225   XBT_INFO("# 6. Put a task on a PM and a task on a VM.");
226   test_two_tasks(pm0, vm0);
227   XBT_INFO(" ");
228
229   MSG_vm_destroy(vm0);
230
231   vm0 = MSG_vm_create_core(pm0, "VM0");
232   double cpu_speed = MSG_host_get_speed(pm0);
233   MSG_vm_set_bound(vm0, cpu_speed / 10);
234   MSG_vm_start(vm0);
235
236   XBT_INFO("# 7. Put a single task on the VM capped by 10%%.");
237   test_one_task(vm0);
238   XBT_INFO(" ");
239
240   XBT_INFO("# 8. Put two tasks on the VM capped by 10%%.");
241   test_two_tasks(vm0, vm0);
242   XBT_INFO(" ");
243
244   XBT_INFO("# 9. Put a task on a PM and a task on the VM capped by 10%%.");
245   test_two_tasks(pm0, vm0);
246   XBT_INFO(" ");
247
248   MSG_vm_destroy(vm0);
249
250   vm0 = MSG_vm_create_core(pm0, "VM0");
251
252   s_vm_params_t params;
253   memset(&params, 0, sizeof(params));
254   params.ramsize = 1L * 1000 * 1000 * 1000; // 1Gbytes
255   MSG_host_set_params(vm0, &params);
256   MSG_vm_start(vm0);
257
258   cpu_speed = MSG_host_get_speed(pm0);
259   MSG_vm_start(vm0);
260
261   XBT_INFO("# 10. Test migration");
262   const double computation_amount = cpu_speed * 10;
263
264   XBT_INFO("# 10. (a) Put a task on a VM without any bound.");
265   launch_worker(vm0, "worker0", computation_amount, 0, 0);
266   MSG_process_sleep(1000);
267   XBT_INFO(" ");
268
269   XBT_INFO("# 10. (b) set 10%% bound to the VM, and then put a task on the VM.");
270   MSG_vm_set_bound(vm0, cpu_speed / 10);
271   launch_worker(vm0, "worker0", computation_amount, 0, 0);
272   MSG_process_sleep(1000);
273   XBT_INFO(" ");
274
275   XBT_INFO("# 10. (c) migrate");
276   MSG_vm_migrate(vm0, pm1);
277   XBT_INFO(" ");
278
279   XBT_INFO("# 10. (d) Put a task again on the VM.");
280   launch_worker(vm0, "worker0", computation_amount, 0, 0);
281   MSG_process_sleep(1000);
282   XBT_INFO(" ");
283
284   MSG_vm_destroy(vm0);
285
286   XBT_INFO("# 11. Change a bound dynamically.");
287   test_dynamic_change();
288
289   return 0;
290 }
291
292 static void launch_master(msg_host_t host)
293 {
294   const char *pr_name = "master_";
295   char **argv = xbt_new(char *, 2);
296   argv[0] = xbt_strdup(pr_name);
297   argv[1] = NULL;
298
299   MSG_process_create_with_arguments(pr_name, master_main, NULL, host, 1, argv);
300 }
301
302 int main(int argc, char *argv[])
303 {
304   /* Get the arguments */
305   MSG_init(&argc, argv);
306
307   /* load the platform file */
308   xbt_assert(argc == 2, "Usage: %s platform_file\n\tExample: %s ../platforms/small_platform.xml\n", argv[0], argv[0]);
309
310   MSG_create_environment(argv[1]);
311
312   msg_host_t pm0 = MSG_host_by_name("Fafard");
313   launch_master(pm0);
314
315   int res = MSG_main();
316   XBT_INFO("Bye (simulation time %g)", MSG_get_clock());
317
318   return !(res == MSG_OK);
319 }