1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
|
/* Copyright (c) 2007-2025. The SimGrid Team. All rights reserved. */
/* This program is free software; you can redistribute it and/or modify it
* under the terms of the license (GNU LGPL) which comes with this package. */
#include "simgrid/actor.h"
#include "simgrid/engine.h"
#include "simgrid/exec.h"
#include "simgrid/host.h"
#include "simgrid/plugins/live_migration.h"
#include "simgrid/vm.h"
#include "xbt/asserts.h"
#include "xbt/log.h"
#include "xbt/str.h"
XBT_LOG_NEW_DEFAULT_CATEGORY(cloud_capping, "Messages specific for this example");
static void worker_main(int argc, char* argv[])
{
xbt_assert(argc == 4);
double computation_amount = xbt_str_parse_double(argv[1], "Invalid computation amount");
int use_bound = !!xbt_str_parse_int(argv[2], "Second parameter (use_bound) should be 0 or 1 but is");
double bound = xbt_str_parse_double(argv[3], "Invalid bound");
double clock_sta = simgrid_get_clock();
sg_exec_t exec = sg_actor_exec_init(computation_amount);
if (use_bound) {
if (bound < 1e-12) /* close enough to 0 without any floating precision surprise */
XBT_INFO("bound == 0 means no capping (i.e., unlimited).");
sg_exec_set_bound(exec, bound);
}
sg_exec_wait(exec);
double clock_end = simgrid_get_clock();
double duration = clock_end - clock_sta;
double flops_per_sec = computation_amount / duration;
if (use_bound)
XBT_INFO("bound to %f => duration %f (%f flops/s)", bound, duration, flops_per_sec);
else
XBT_INFO("not bound => duration %f (%f flops/s)", duration, flops_per_sec);
}
static void launch_worker(sg_host_t host, const char* pr_name, double computation_amount, int use_bound, double bound)
{
char* argv1 = bprintf("%f", computation_amount);
char* argv2 = bprintf("%d", use_bound);
char* argv3 = bprintf("%f", bound);
const char* argv[] = {pr_name, argv1, argv2, argv3, NULL};
sg_actor_create_(pr_name, host, &worker_main, 4, argv);
free(argv1);
free(argv2);
free(argv3);
}
static void worker_busy_loop(int argc, char* argv[])
{
xbt_assert(argc > 2);
char* name = argv[1];
double speed = xbt_str_parse_double(argv[2], "Invalid speed value");
double exec_remain_prev = 1e11;
sg_exec_t exec = sg_actor_exec_async(exec_remain_prev);
for (int i = 0; i < 10; i++) {
if (speed > 0) {
double new_bound = (speed / 10) * i;
XBT_INFO("set bound of VM1 to %f", new_bound);
sg_vm_set_bound(((sg_vm_t)sg_actor_get_host(sg_actor_self())), new_bound);
}
sg_actor_sleep_for(100);
double exec_remain_now = sg_exec_get_remaining(exec);
double flops_per_sec = exec_remain_prev - exec_remain_now;
XBT_INFO("%s@%s: %.0f flops/s", name, sg_host_get_name(sg_actor_get_host(sg_actor_self())), flops_per_sec / 100);
exec_remain_prev = exec_remain_now;
sg_actor_sleep_for(1);
}
sg_exec_wait(exec);
}
static void test_dynamic_change()
{
sg_host_t pm0 = sg_host_by_name("Fafard");
sg_vm_t vm0 = sg_vm_create_core(pm0, "VM0");
sg_vm_t vm1 = sg_vm_create_core(pm0, "VM1");
sg_vm_start(vm0);
sg_vm_start(vm1);
const char* w0_argv[] = {"worker0", "Task0", "-1.0", NULL};
sg_actor_create_("worker0", (sg_host_t)vm0, &worker_busy_loop, 3, w0_argv);
char* speed = bprintf("%f", sg_host_get_speed(pm0));
const char* w1_argv[] = {"worker1", "Task1", speed, NULL};
sg_actor_create_("worker1", (sg_host_t)vm1, &worker_busy_loop, 3, w1_argv);
sg_actor_sleep_for(3000); // let the tasks end
sg_vm_destroy(vm0);
sg_vm_destroy(vm1);
free(speed);
}
static void test_one_task(sg_host_t hostA)
{
const double cpu_speed = sg_host_get_speed(hostA);
const double computation_amount = cpu_speed * 10;
const char* hostA_name = sg_host_get_name(hostA);
XBT_INFO("### Test: with/without sg_exec_set_bound");
XBT_INFO("### Test: no bound for Task1@%s", hostA_name);
launch_worker(hostA, "worker0", computation_amount, 0, 0);
sg_actor_sleep_for(1000);
XBT_INFO("### Test: 50%% for Task1@%s", hostA_name);
launch_worker(hostA, "worker0", computation_amount, 1, cpu_speed / 2);
sg_actor_sleep_for(1000);
XBT_INFO("### Test: 33%% for Task1@%s", hostA_name);
launch_worker(hostA, "worker0", computation_amount, 1, cpu_speed / 3);
sg_actor_sleep_for(1000);
XBT_INFO("### Test: zero for Task1@%s (i.e., unlimited)", hostA_name);
launch_worker(hostA, "worker0", computation_amount, 1, 0);
sg_actor_sleep_for(1000);
XBT_INFO("### Test: 200%% for Task1@%s (i.e., meaningless)", hostA_name);
launch_worker(hostA, "worker0", computation_amount, 1, cpu_speed * 2);
sg_actor_sleep_for(1000);
}
static void test_two_tasks(sg_host_t hostA, sg_host_t hostB)
{
const double cpu_speed = sg_host_get_speed(hostA);
xbt_assert(cpu_speed == sg_host_get_speed(hostB));
const double computation_amount = cpu_speed * 10;
const char* hostA_name = sg_host_get_name(hostA);
const char* hostB_name = sg_host_get_name(hostB);
XBT_INFO("### Test: no bound for Task1@%s, no bound for Task2@%s", hostA_name, hostB_name);
launch_worker(hostA, "worker0", computation_amount, 0, 0);
launch_worker(hostB, "worker1", computation_amount, 0, 0);
sg_actor_sleep_for(1000);
XBT_INFO("### Test: 0 for Task1@%s, 0 for Task2@%s (i.e., unlimited)", hostA_name, hostB_name);
launch_worker(hostA, "worker0", computation_amount, 1, 0);
launch_worker(hostB, "worker1", computation_amount, 1, 0);
sg_actor_sleep_for(1000);
XBT_INFO("### Test: 50%% for Task1@%s, 50%% for Task2@%s", hostA_name, hostB_name);
launch_worker(hostA, "worker0", computation_amount, 1, cpu_speed / 2);
launch_worker(hostB, "worker1", computation_amount, 1, cpu_speed / 2);
sg_actor_sleep_for(1000);
XBT_INFO("### Test: 25%% for Task1@%s, 25%% for Task2@%s", hostA_name, hostB_name);
launch_worker(hostA, "worker0", computation_amount, 1, cpu_speed / 4);
launch_worker(hostB, "worker1", computation_amount, 1, cpu_speed / 4);
sg_actor_sleep_for(1000);
XBT_INFO("### Test: 75%% for Task1@%s, 100%% for Task2@%s", hostA_name, hostB_name);
launch_worker(hostA, "worker0", computation_amount, 1, cpu_speed * 0.75);
launch_worker(hostB, "worker1", computation_amount, 1, cpu_speed);
sg_actor_sleep_for(1000);
XBT_INFO("### Test: no bound for Task1@%s, 25%% for Task2@%s", hostA_name, hostB_name);
launch_worker(hostA, "worker0", computation_amount, 0, 0);
launch_worker(hostB, "worker1", computation_amount, 1, cpu_speed / 4);
sg_actor_sleep_for(1000);
XBT_INFO("### Test: 75%% for Task1@%s, 25%% for Task2@%s", hostA_name, hostB_name);
launch_worker(hostA, "worker0", computation_amount, 1, cpu_speed * 0.75);
launch_worker(hostB, "worker1", computation_amount, 1, cpu_speed / 4);
sg_actor_sleep_for(1000);
}
static void master_main(int argc, char* argv[])
{
sg_host_t pm0 = sg_host_by_name("Fafard");
sg_host_t pm1 = sg_host_by_name("Fafard");
XBT_INFO("# 1. Put a single task on a PM.");
test_one_task(pm0);
XBT_INFO(".");
XBT_INFO("# 2. Put two tasks on a PM.");
test_two_tasks(pm0, pm0);
XBT_INFO(".");
sg_vm_t vm0 = sg_vm_create_core(pm0, "VM0");
sg_vm_start(vm0);
XBT_INFO("# 3. Put a single task on a VM.");
test_one_task((sg_host_t)vm0);
XBT_INFO(".");
XBT_INFO("# 4. Put two tasks on a VM.");
test_two_tasks((sg_host_t)vm0, (sg_host_t)vm0);
XBT_INFO(".");
sg_vm_destroy(vm0);
vm0 = sg_vm_create_core(pm0, "VM0");
sg_vm_start(vm0);
XBT_INFO("# 6. Put a task on a PM and a task on a VM.");
test_two_tasks(pm0, (sg_host_t)vm0);
XBT_INFO(".");
sg_vm_destroy(vm0);
vm0 = sg_vm_create_core(pm0, "VM0");
double cpu_speed = sg_host_get_speed(pm0);
sg_vm_set_bound(vm0, cpu_speed / 10);
sg_vm_start(vm0);
XBT_INFO("# 7. Put a single task on the VM capped by 10%%.");
test_one_task((sg_host_t)vm0);
XBT_INFO(".");
XBT_INFO("# 8. Put two tasks on the VM capped by 10%%.");
test_two_tasks((sg_host_t)vm0, (sg_host_t)vm0);
XBT_INFO(".");
XBT_INFO("# 9. Put a task on a PM and a task on the VM capped by 10%%.");
test_two_tasks(pm0, (sg_host_t)vm0);
XBT_INFO(".");
sg_vm_destroy(vm0);
vm0 = sg_vm_create_core(pm0, "VM0");
sg_vm_set_ramsize(vm0, 1e9); // 1GB
sg_vm_start(vm0);
cpu_speed = sg_host_get_speed(pm0);
sg_vm_start(vm0);
XBT_INFO("# 10. Test migration");
const double computation_amount = cpu_speed * 10;
XBT_INFO("# 10. (a) Put a task on a VM without any bound.");
launch_worker((sg_host_t)vm0, "worker0", computation_amount, 0, 0);
sg_actor_sleep_for(1000);
XBT_INFO(".");
XBT_INFO("# 10. (b) set 10%% bound to the VM, and then put a task on the VM.");
sg_vm_set_bound(vm0, cpu_speed / 10);
launch_worker((sg_host_t)vm0, "worker0", computation_amount, 0, 0);
sg_actor_sleep_for(1000);
XBT_INFO(".");
XBT_INFO("# 10. (c) migrate");
sg_vm_migrate(vm0, pm1);
XBT_INFO(".");
XBT_INFO("# 10. (d) Put a task again on the VM.");
launch_worker((sg_host_t)vm0, "worker0", computation_amount, 0, 0);
sg_actor_sleep_for(1000);
XBT_INFO(".");
sg_vm_destroy(vm0);
XBT_INFO("# 11. Change a bound dynamically.");
test_dynamic_change();
}
int main(int argc, char* argv[])
{
/* Get the arguments */
simgrid_init(&argc, argv);
sg_vm_live_migration_plugin_init();
/* load the platform file */
xbt_assert(argc == 2, "Usage: %s platform_file\n\tExample: %s ../platforms/small_platform.xml\n", argv[0], argv[0]);
simgrid_load_platform(argv[1]);
sg_actor_create("master_", sg_host_by_name("Fafard"), &master_main, 0, NULL);
simgrid_run();
XBT_INFO("Bye (simulation time %g)", simgrid_get_clock());
return 0;
}
|