Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
simplify writing in model setup + may fix issue with unit-tests
[simgrid.git] / src / surf / network_smpi.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 "network_smpi.hpp"
7 #include "simgrid/kernel/routing/NetZoneImpl.hpp"
8 #include "simgrid/s4u/Engine.hpp"
9 #include "simgrid/sg_config.hpp"
10 #include "smpi_utils.hpp"
11 #include "src/kernel/EngineImpl.hpp"
12 #include "src/surf/surf_interface.hpp"
13 #include "surf/surf.hpp"
14
15 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(res_network);
16
17 /*********
18  * Model *
19  *********/
20
21 /************************************************************************/
22 /* New model based on LV08 and experimental results of MPI ping-pongs   */
23 /************************************************************************/
24 /* @Inproceedings{smpi_ipdps, */
25 /*  author={Pierre-Nicolas Clauss and Mark Stillwell and Stéphane Genaud and Frédéric Suter and Henri Casanova and
26  * Martin Quinson}, */
27 /*  title={Single Node On-Line Simulation of {MPI} Applications with SMPI}, */
28 /*  booktitle={25th IEEE International Parallel and Distributed Processing Symposium (IPDPS'11)}, */
29 /*  address={Anchorage (Alaska) USA}, */
30 /*  month=may, */
31 /*  year={2011} */
32 /*  } */
33 void surf_network_model_init_SMPI()
34 {
35   auto net_model = std::make_shared<simgrid::kernel::resource::NetworkSmpiModel>("Network_SMPI");
36   auto* engine   = simgrid::kernel::EngineImpl::get_instance();
37   engine->add_model(net_model);
38   engine->get_netzone_root()->set_network_model(net_model);
39
40   simgrid::config::set_default<double>("network/weight-S", 8775);
41 }
42
43 namespace simgrid {
44 namespace kernel {
45 namespace resource {
46
47 void NetworkSmpiModel::check_lat_factor_cb()
48 {
49   if (not simgrid::config::is_default("smpi/lat-factor")) {
50     throw std::invalid_argument(
51         "NetworkModelIntf: Cannot mix network/latency-factor and callback configuration. Choose only one of them.");
52   }
53 }
54
55 void NetworkSmpiModel::check_bw_factor_cb()
56 {
57   if (not simgrid::config::is_default("smpi/bw-factor")) {
58     throw std::invalid_argument(
59         "NetworkModelIntf: Cannot mix network/bandwidth-factor and callback configuration. Choose only one of them.");
60   }
61 }
62
63 double NetworkSmpiModel::get_bandwidth_factor(double size)
64 {
65   static std::vector<s_smpi_factor_t> smpi_bw_factor;
66   if (smpi_bw_factor.empty())
67     smpi_bw_factor = smpi::utils::parse_factor(config::get_value<std::string>("smpi/bw-factor"));
68
69   double current = 1.0;
70   for (auto const& fact : smpi_bw_factor) {
71     if (size <= fact.factor) {
72       XBT_DEBUG("%f <= %zu return %f", size, fact.factor, current);
73       return current;
74     } else
75       current = fact.values.front();
76   }
77   XBT_DEBUG("%f > %zu return %f", size, smpi_bw_factor.back().factor, current);
78
79   return current;
80 }
81
82 double NetworkSmpiModel::get_latency_factor(double size)
83 {
84   static std::vector<s_smpi_factor_t> smpi_lat_factor;
85   if (smpi_lat_factor.empty())
86     smpi_lat_factor = smpi::utils::parse_factor(config::get_value<std::string>("smpi/lat-factor"));
87
88   double current = 1.0;
89   for (auto const& fact : smpi_lat_factor) {
90     if (size <= fact.factor) {
91       XBT_DEBUG("%f <= %zu return %f", size, fact.factor, current);
92       return current;
93     } else
94       current = fact.values.front();
95   }
96   XBT_DEBUG("%f > %zu return %f", size, smpi_lat_factor.back().factor, current);
97
98   return current;
99 }
100 } // namespace resource
101 } // namespace kernel
102 } // namespace simgrid