Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
15 years later, I finally managed to kill host/model:compound
[simgrid.git] / src / surf / host_clm03.cpp
1 /* Copyright (c) 2013-2023. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <simgrid/kernel/routing/NetPoint.hpp>
7 #include <simgrid/kernel/routing/NetZoneImpl.hpp>
8 #include <simgrid/s4u/Engine.hpp>
9
10 #include "simgrid/sg_config.hpp"
11 #include "src/kernel/EngineImpl.hpp"
12 #include "src/kernel/resource/NetworkModel.hpp"
13 #include "src/surf/host_clm03.hpp"
14
15 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(res_host);
16
17 SIMGRID_REGISTER_HOST_MODEL(
18     default, "Default host model. Currently, CPU:Cas01, network:LV08 (with cross traffic enabled), and disk:S19", []() {
19       simgrid::config::set_default<bool>("network/crosstraffic", true);
20       auto host_model = std::make_shared<simgrid::kernel::resource::HostCLM03Model>("Host_CLM03");
21       auto* engine    = simgrid::kernel::EngineImpl::get_instance();
22       engine->add_model(host_model);
23       engine->get_netzone_root()->set_host_model(host_model);
24
25       std::string network_model_name = simgrid::config::get_value<std::string>("network/model");
26       std::string cpu_model_name     = simgrid::config::get_value<std::string>("cpu/model");
27       std::string disk_model_name    = simgrid::config::get_value<std::string>("disk/model");
28       simgrid_cpu_models().by_name(cpu_model_name).init();
29       simgrid_disk_models().by_name(disk_model_name).init();
30       simgrid_network_models().by_name(network_model_name).init();
31     });
32
33 namespace simgrid::kernel::resource {
34
35 double HostCLM03Model::next_occurring_event(double /*now*/)
36 {
37   /* nothing specific to be done here
38    * EngineImpl::solve already calls all the models next_occurring_event properly */
39   return -1.0;
40 }
41
42 void HostCLM03Model::update_actions_state(double /*now*/, double /*delta*/)
43 {
44   /* I've no action to update */
45 }
46
47 /* Helper function for executeParallelTask */
48 static inline double has_cost(const double* array, size_t pos)
49 {
50   if (array)
51     return array[pos];
52   return -1.0;
53 }
54
55 Action* HostCLM03Model::io_stream(s4u::Host* src_host, DiskImpl* src_disk, s4u::Host* dst_host, DiskImpl* dst_disk,
56                                   double size)
57 {
58   auto net_model = src_host->get_englobing_zone()->get_network_model();
59   auto system = net_model->get_maxmin_system();
60   auto* action = net_model->communicate(src_host, dst_host, size, -1, true);
61
62   // We don't want to apply the network model bandwidth factor to the I/O constraints
63   double bw_factor = net_model->get_bandwidth_factor();
64   if (src_disk != nullptr){
65     //FIXME: if the stream starts from a disk, we might not want to pay the network latency
66     system->expand(src_disk->get_constraint(), action->get_variable(), bw_factor);
67     system->expand(src_disk->get_read_constraint(), action->get_variable(), bw_factor);
68   }
69   if (dst_disk != nullptr){
70     system->expand(dst_disk->get_constraint(), action->get_variable(), bw_factor);
71     system->expand(dst_disk->get_write_constraint(), action->get_variable(), bw_factor);
72   }
73
74   return action;
75 }
76
77 Action* HostCLM03Model::execute_parallel(const std::vector<s4u::Host*>& host_list, const double* flops_amount,
78                                          const double* bytes_amount, double rate)
79 {
80   Action* action = nullptr;
81   auto net_model = host_list[0]->get_netpoint()->get_englobing_zone()->get_network_model();
82   if ((host_list.size() == 1) && (has_cost(bytes_amount, 0) <= 0) && (has_cost(flops_amount, 0) > 0)) {
83     action = host_list[0]->get_cpu()->execution_start(flops_amount[0], rate);
84   } else if ((host_list.size() == 1) && (has_cost(flops_amount, 0) <= 0)) {
85     action = net_model->communicate(host_list[0], host_list[0], bytes_amount[0], rate, false);
86   } else if ((host_list.size() == 2) && (has_cost(flops_amount, 0) <= 0) && (has_cost(flops_amount, 1) <= 0)) {
87     int nb       = 0;
88     double value = 0.0;
89
90     for (size_t i = 0; i < host_list.size() * host_list.size(); i++) {
91       if (has_cost(bytes_amount, i) > 0.0) {
92         nb++;
93         value = has_cost(bytes_amount, i);
94       }
95     }
96     if (nb == 1) {
97       action = net_model->communicate(host_list[0], host_list[1], value, rate, false);
98     } else if (nb == 0) {
99       xbt_die("Cannot have a communication with no flop to exchange in this model. You should consider using the "
100               "ptask model");
101     } else {
102       xbt_die("Cannot have a communication that is not a simple point-to-point in this model. You should consider "
103               "using the ptask model");
104     }
105   } else {
106     xbt_die(
107         "This model only accepts one of the following. You should consider using the ptask model for the other cases.\n"
108         " - execution with one host only and no communication\n"
109         " - Self-comms with one host only\n"
110         " - Communications with two hosts and no computation");
111   }
112   return action;
113 }
114
115 Action* HostCLM03Model::execute_thread(const s4u::Host* host, double flops_amount, int thread_count)
116 {
117   auto cpu = host->get_cpu();
118   /* Create a single action whose cost is thread_count * flops_amount and that requests thread_count cores. */
119   return cpu->execution_start(thread_count * flops_amount, thread_count, -1);
120 }
121
122 } // namespace simgrid::kernel::resource