Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'surf_precision' into 'master'
[simgrid.git] / examples / c / energy-vm / energy-vm.c
1 /* Copyright (c) 2007-2020. 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/actor.h"
8 #include "simgrid/engine.h"
9 #include "simgrid/host.h"
10 #include "simgrid/plugins/energy.h"
11 #include "simgrid/vm.h"
12 #include "xbt/asserts.h"
13 #include "xbt/log.h"
14
15 XBT_LOG_NEW_DEFAULT_CATEGORY(energy_vm, "Messages of this example");
16
17 static void worker_func(XBT_ATTRIB_UNUSED int argc, XBT_ATTRIB_UNUSED char* argv[])
18 {
19   sg_actor_self_execute(300E6);
20   XBT_INFO("This worker is done.");
21 }
22
23 static void dvfs(XBT_ATTRIB_UNUSED int argc, XBT_ATTRIB_UNUSED char* argv[])
24 {
25   sg_host_t host1 = sg_host_by_name("MyHost1");
26   sg_host_t host2 = sg_host_by_name("MyHost2");
27   sg_host_t host3 = sg_host_by_name("MyHost3");
28
29   /* Host 1 */
30   XBT_INFO("Creating and starting two VMs");
31   sg_vm_t vm_host1 = sg_vm_create_core(host1, "vm_host1");
32   sg_vm_start(vm_host1);
33   sg_vm_t vm_host2 = sg_vm_create_core(host2, "vm_host2");
34   sg_vm_start(vm_host2);
35
36   XBT_INFO("Create two tasks on Host1: both inside a VM");
37   sg_actor_t p11 = sg_actor_init("p11", (sg_host_t)vm_host1);
38   sg_actor_start(p11, worker_func, 0, NULL);
39   sg_actor_t p12 = sg_actor_init("p12", (sg_host_t)vm_host1);
40   sg_actor_start(p12, worker_func, 0, NULL);
41
42   XBT_INFO("Create two tasks on Host2: one inside a VM, the other directly on the host");
43   sg_actor_t p21 = sg_actor_init("p21", (sg_host_t)vm_host2);
44   sg_actor_start(p21, worker_func, 0, NULL);
45   sg_actor_t p22 = sg_actor_init("p22", host2);
46   sg_actor_start(p22, worker_func, 0, NULL);
47
48   XBT_INFO("Create two tasks on Host3: both directly on the host");
49   sg_actor_t p31 = sg_actor_init("p31", host3);
50   sg_actor_start(p31, worker_func, 0, NULL);
51   sg_actor_t p32 = sg_actor_init("p32", host3);
52   sg_actor_start(p32, worker_func, 0, NULL);
53
54   XBT_INFO("Wait 5 seconds. The tasks are still running (they run for 3 seconds, but 2 tasks are co-located, "
55            "so they run for 6 seconds)");
56   sg_actor_sleep_for(5);
57   XBT_INFO("Wait another 5 seconds. The tasks stop at some point in between");
58   sg_actor_sleep_for(5);
59
60   sg_vm_destroy(vm_host1);
61   sg_vm_destroy(vm_host2);
62 }
63
64 int main(int argc, char* argv[])
65 {
66   sg_host_energy_plugin_init();
67   simgrid_init(&argc, argv);
68
69   xbt_assert(argc > 1, "Usage: %s platform_file\n\tExample: %s msg_platform.xml\n", argv[0], argv[0]);
70
71   simgrid_load_platform(argv[1]);
72
73   sg_actor_t actor = sg_actor_init("dvfs", sg_host_by_name("MyHost1"));
74   sg_actor_start(actor, dvfs, 0, NULL);
75
76   simgrid_run();
77
78   XBT_INFO("Total simulation time: %.2f; Host2 and Host3 must have the exact same energy consumption; Host1 is "
79            "multi-core and will differ.",
80            simgrid_get_clock());
81
82   return 0;
83 }