Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Typos.
[simgrid.git] / src / surf / host_clm03.cpp
1 /* Copyright (c) 2013-2021. 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 "src/surf/host_clm03.hpp"
7 #include "simgrid/kernel/routing/NetPoint.hpp"
8 #include "simgrid/kernel/routing/NetZoneImpl.hpp"
9 #include "simgrid/s4u/Engine.hpp"
10 #include "simgrid/sg_config.hpp"
11 #include "src/kernel/EngineImpl.hpp"
12 #include "surf/surf.hpp"
13
14 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(res_host);
15
16 void surf_host_model_init_current_default()
17 {
18   auto host_model = std::make_shared<simgrid::surf::HostCLM03Model>();
19   simgrid::config::set_default<bool>("network/crosstraffic", true);
20   simgrid::kernel::EngineImpl::get_instance()->add_model(simgrid::kernel::resource::Model::Type::HOST, host_model,
21                                                          true);
22   simgrid::s4u::Engine::get_instance()->get_netzone_root()->get_impl()->set_host_model(host_model);
23   surf_cpu_model_init_Cas01();
24   surf_network_model_init_LegrandVelho();
25 }
26
27 void surf_host_model_init_compound()
28 {
29   auto host_model = std::make_shared<simgrid::surf::HostCLM03Model>();
30   simgrid::kernel::EngineImpl::get_instance()->add_model(simgrid::kernel::resource::Model::Type::HOST, host_model,
31                                                          true);
32   simgrid::s4u::Engine::get_instance()->get_netzone_root()->get_impl()->set_host_model(host_model);
33 }
34
35 namespace simgrid {
36 namespace surf {
37 double HostCLM03Model::next_occurring_event(double now)
38 {
39   /* nothing specific to be done here
40    * surf_solve already calls all the models next_occurring_event properly */
41   return -1.0;
42 }
43
44 void HostCLM03Model::update_actions_state(double /*now*/, double /*delta*/)
45 {
46   /* I've no action to update */
47 }
48
49 /* Helper function for executeParallelTask */
50 static inline double has_cost(const double* array, size_t pos)
51 {
52   if (array)
53     return array[pos];
54   return -1.0;
55 }
56
57 kernel::resource::Action* HostCLM03Model::execute_parallel(const std::vector<s4u::Host*>& host_list,
58                                                            const double* flops_amount, const double* bytes_amount,
59                                                            double rate)
60 {
61   kernel::resource::Action* action = nullptr;
62   /* FIXME[donassolo]: getting the network_model from the origin host
63    * Soon we need to change this function to first get the routes and later
64    * create the respective surf actions */
65   auto net_model = host_list[0]->get_netpoint()->get_englobing_zone()->get_network_model();
66   if ((host_list.size() == 1) && (has_cost(bytes_amount, 0) <= 0) && (has_cost(flops_amount, 0) > 0)) {
67     action = host_list[0]->pimpl_cpu->execution_start(flops_amount[0]);
68   } else if ((host_list.size() == 1) && (has_cost(flops_amount, 0) <= 0)) {
69     action = net_model->communicate(host_list[0], host_list[0], bytes_amount[0], rate);
70   } else if ((host_list.size() == 2) && (has_cost(flops_amount, 0) <= 0) && (has_cost(flops_amount, 1) <= 0)) {
71     int nb       = 0;
72     double value = 0.0;
73
74     for (size_t i = 0; i < host_list.size() * host_list.size(); i++) {
75       if (has_cost(bytes_amount, i) > 0.0) {
76         nb++;
77         value = has_cost(bytes_amount, i);
78       }
79     }
80     if (nb == 1) {
81       action = net_model->communicate(host_list[0], host_list[1], value, rate);
82     } else if (nb == 0) {
83       xbt_die("Cannot have a communication with no flop to exchange in this model. You should consider using the "
84               "ptask model");
85     } else {
86       xbt_die("Cannot have a communication that is not a simple point-to-point in this model. You should consider "
87               "using the ptask model");
88     }
89   } else {
90     xbt_die(
91         "This model only accepts one of the following. You should consider using the ptask model for the other cases.\n"
92         " - execution with one host only and no communication\n"
93         " - Self-comms with one host only\n"
94         " - Communications with two hosts and no computation");
95   }
96   return action;
97 }
98
99 } // namespace surf
100 } // namespace simgrid