Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #2 from mquinson/master
[simgrid.git] / examples / msg / energy / vm / energy_vm.c
1 /* Copyright (c) 2007-2010, 2013-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 <stdio.h>
8
9 #include "simgrid/msg.h"
10 #include "xbt/sysdep.h"         /* calloc */
11 #include "simgrid/plugins/energy.h"
12
13 /* Create a log channel to have nice outputs. */
14 #include "xbt/log.h"
15 #include "xbt/asserts.h"
16
17 XBT_LOG_NEW_DEFAULT_CATEGORY(energy_vm, "Messages of this example");
18
19
20 static int worker_func() {
21   msg_task_t task1 = MSG_task_create("t1", 300E6, 0, NULL);
22   MSG_task_execute (task1);
23   MSG_task_destroy(task1);
24   XBT_INFO("This worker is done.");
25   return 0;
26 }
27
28 static int dvfs(int argc, char *argv[])
29 {
30   msg_host_t host1 = MSG_host_by_name("MyHost1");
31   msg_host_t host2 = MSG_host_by_name("MyHost2");
32   msg_host_t host3 = MSG_host_by_name("MyHost3");
33
34   /* Host 1 */
35   XBT_INFO("Creating and starting two VMs");
36   msg_vm_t vm_host1 = MSG_vm_create(host1, "vm_host1", 4, 2048, 100, NULL, 1024 * 20, 10,50);
37   MSG_vm_start(vm_host1);
38   msg_vm_t vm_host3 = MSG_vm_create(host3, "vm_host3", 4, 2048, 100, NULL, 1024 * 20, 10,50);
39   MSG_vm_start(vm_host3);
40
41   XBT_INFO("Create two tasks on Host1: one inside a VM, the other directly on the host");
42   MSG_process_create("p11", worker_func, NULL, vm_host1);
43   MSG_process_create("p12", worker_func, NULL, host1);
44
45   XBT_INFO("Create two tasks on Host2: both directly on the host");
46   MSG_process_create("p21", worker_func, NULL, host2);
47   MSG_process_create("p22", worker_func, NULL, host2);
48
49   XBT_INFO("Create two tasks on Host3: both inside a VM");
50   MSG_process_create("p31", worker_func, NULL, vm_host3);
51   MSG_process_create("p32", worker_func, NULL, vm_host3);
52
53   XBT_INFO("Wait 5 seconds. The tasks are still running (they run for 3 seconds, but 2 tasks are co-located, so they run for 6 seconds)");
54   MSG_process_sleep(5);
55   XBT_INFO("Wait another 5 seconds. The tasks stop at some point in between");
56   MSG_process_sleep(5);
57
58   MSG_vm_shutdown(vm_host1);
59   MSG_vm_shutdown(vm_host3);
60
61   return 0;
62 }
63
64 int main(int argc, char *argv[])
65 {
66   msg_error_t res = MSG_OK;
67   sg_energy_plugin_init();
68   MSG_init(&argc, argv);
69
70   xbt_assert(argc > 1, "Usage: %s platform_file\n"
71        "\tExample: %s msg_platform.xml\n", 
72        argv[0], argv[0]);
73
74   MSG_create_environment(argv[1]);
75
76   /*   Application deployment */
77   MSG_process_create("dvfs",dvfs,NULL,MSG_host_by_name("MyHost1"));
78
79   res = MSG_main();
80
81   XBT_INFO("Total simulation time: %.2f; All hosts must have the exact same energy consumption.", MSG_get_clock());
82
83   return res != MSG_OK;
84 }
85