Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
provide a backtrace implementation that uses boost.stacktrace
[simgrid.git] / src / surf / network_smpi.cpp
1 /* Copyright (c) 2013-2018. 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/sg_config.hpp"
8 #include "smpi_utils.hpp"
9 #include "src/surf/surf_interface.hpp"
10 #include "surf/surf.hpp"
11
12 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_network);
13
14 std::vector<s_smpi_factor_t> smpi_bw_factor;
15 std::vector<s_smpi_factor_t> smpi_lat_factor;
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 Martin Quinson}, */
26 /*  title={Single Node On-Line Simulation of {MPI} Applications with SMPI}, */
27 /*  booktitle={25th IEEE International Parallel and Distributed Processing Symposium (IPDPS'11)}, */
28 /*  address={Anchorage (Alaska) USA}, */
29 /*  month=may, */
30 /*  year={2011} */
31 /*  } */
32 void surf_network_model_init_SMPI()
33 {
34   if (surf_network_model)
35     return;
36   surf_network_model = new simgrid::kernel::resource::NetworkSmpiModel();
37
38   simgrid::config::set_default<double>("network/weight-S", 8775);
39 }
40
41 namespace simgrid {
42 namespace kernel {
43 namespace resource {
44
45 NetworkSmpiModel::NetworkSmpiModel() : NetworkCm02Model()
46 {
47   /* Do not add this into all_existing_models: our ancestor already does so */
48 }
49
50 NetworkSmpiModel::~NetworkSmpiModel() = default;
51
52 double NetworkSmpiModel::get_bandwidth_factor(double size)
53 {
54   if (smpi_bw_factor.empty())
55     smpi_bw_factor = parse_factor(simgrid::config::get_value<std::string>("smpi/bw-factor"));
56
57   double current = 1.0;
58   for (auto const& fact : smpi_bw_factor) {
59     if (size <= fact.factor) {
60       XBT_DEBUG("%f <= %zu return %f", size, fact.factor, current);
61       return current;
62     } else
63       current = fact.values.front();
64   }
65   XBT_DEBUG("%f > %zu return %f", size, smpi_bw_factor.back().factor, current);
66
67   return current;
68 }
69
70 double NetworkSmpiModel::get_latency_factor(double size)
71 {
72   if (smpi_lat_factor.empty())
73     smpi_lat_factor = parse_factor(simgrid::config::get_value<std::string>("smpi/lat-factor"));
74
75   double current = 1.0;
76   for (auto const& fact : smpi_lat_factor) {
77     if (size <= fact.factor) {
78       XBT_DEBUG("%f <= %zu return %f", size, fact.factor, current);
79       return current;
80     } else
81       current = fact.values.front();
82   }
83   XBT_DEBUG("%f > %zu return %f", size, smpi_lat_factor.back().factor, current);
84
85   return current;
86 }
87
88 double NetworkSmpiModel::get_bandwidth_constraint(double rate, double bound, double size)
89 {
90   return rate < 0 ? bound : std::min(bound, rate * get_bandwidth_factor(size));
91 }
92
93 /************
94  * Resource *
95  ************/
96
97 /**********
98  * Action *
99  **********/
100 }
101 }
102 } // namespace simgrid