Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
2b1c21d1026d815e310ca148ff11c30e03604e69
[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::surf::NetworkSmpiModel();
37   all_existing_models->push_back(surf_network_model);
38
39   xbt_cfg_setdefault_double("network/weight-S", 8775);
40 }
41
42 namespace simgrid {
43 namespace surf {
44
45 NetworkSmpiModel::NetworkSmpiModel() : NetworkCm02Model()
46 {
47 }
48
49 NetworkSmpiModel::~NetworkSmpiModel() = default;
50
51 double NetworkSmpiModel::bandwidthFactor(double size)
52 {
53   if (smpi_bw_factor.empty())
54     smpi_bw_factor = parse_factor(xbt_cfg_get_string("smpi/bw-factor"));
55
56   double current = 1.0;
57   for (auto const& fact : smpi_bw_factor) {
58     if (size <= fact.factor) {
59       XBT_DEBUG("%f <= %zu return %f", size, fact.factor, current);
60       return current;
61     } else
62       current = fact.values.front();
63   }
64   XBT_DEBUG("%f > %zu return %f", size, smpi_bw_factor.back().factor, current);
65
66   return current;
67 }
68
69 double NetworkSmpiModel::latencyFactor(double size)
70 {
71   if (smpi_lat_factor.empty())
72     smpi_lat_factor = parse_factor(xbt_cfg_get_string("smpi/lat-factor"));
73
74   double current = 1.0;
75   for (auto const& fact : smpi_lat_factor) {
76     if (size <= fact.factor) {
77       XBT_DEBUG("%f <= %zu return %f", size, fact.factor, current);
78       return current;
79     } else
80       current = fact.values.front();
81   }
82   XBT_DEBUG("%f > %zu return %f", size, smpi_lat_factor.back().factor, current);
83
84   return current;
85 }
86
87 double NetworkSmpiModel::bandwidthConstraint(double rate, double bound, double size)
88 {
89   return rate < 0 ? bound : std::min(bound, rate * bandwidthFactor(size));
90 }
91
92 /************
93  * Resource *
94  ************/
95
96 /**********
97  * Action *
98  **********/
99 }
100 }