Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
some dict related cleanups
[simgrid.git] / src / surf / network_smpi.cpp
1 /* Copyright (c) 2013-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <cstddef>
8 #include <algorithm>
9
10 #include <xbt/log.h>
11
12 #include "network_smpi.hpp"
13 #include "simgrid/sg_config.h"
14 #include "smpi/smpi_utils.hpp"
15
16 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_network);
17
18 std::vector<s_smpi_factor_t> smpi_bw_factor;
19 std::vector<s_smpi_factor_t> smpi_lat_factor;
20
21 /*********
22  * Model *
23  *********/
24
25 /************************************************************************/
26 /* New model based on LV08 and experimental results of MPI ping-pongs   */
27 /************************************************************************/
28 /* @Inproceedings{smpi_ipdps, */
29 /*  author={Pierre-Nicolas Clauss and Mark Stillwell and Stéphane Genaud and Frédéric Suter and Henri Casanova and Martin Quinson}, */
30 /*  title={Single Node On-Line Simulation of {MPI} Applications with SMPI}, */
31 /*  booktitle={25th IEEE International Parallel and Distributed Processing Symposium (IPDPS'11)}, */
32 /*  address={Anchorage (Alaska) USA}, */
33 /*  month=may, */
34 /*  year={2011} */
35 /*  } */
36 void surf_network_model_init_SMPI()
37 {
38   if (surf_network_model)
39     return;
40   surf_network_model = new simgrid::surf::NetworkSmpiModel();
41   all_existing_models->push_back(surf_network_model);
42
43   xbt_cfg_setdefault_double("network/sender-gap", 10e-6);
44   xbt_cfg_setdefault_double("network/weight-S", 8775);
45 }
46
47 namespace simgrid {
48 namespace surf {
49
50 NetworkSmpiModel::NetworkSmpiModel() : NetworkCm02Model()
51 {
52   haveGap_ = true;
53 }
54
55 NetworkSmpiModel::~NetworkSmpiModel() = default;
56
57 double NetworkSmpiModel::bandwidthFactor(double size)
58 {
59   if (smpi_bw_factor.empty())
60     smpi_bw_factor = parse_factor(xbt_cfg_get_string("smpi/bw-factor"));
61
62   double current = 1.0;
63   for (const auto& fact : smpi_bw_factor) {
64     if (size <= fact.factor) {
65       XBT_DEBUG("%f <= %zu return %f", size, fact.factor, current);
66       return current;
67     } else
68       current = fact.values.front();
69   }
70   XBT_DEBUG("%f > %zu return %f", size, smpi_bw_factor.back().factor, current);
71
72   return current;
73 }
74
75 double NetworkSmpiModel::latencyFactor(double size)
76 {
77   if (smpi_lat_factor.empty())
78     smpi_lat_factor = parse_factor(xbt_cfg_get_string("smpi/lat-factor"));
79
80   double current = 1.0;
81   for (const auto& fact : smpi_lat_factor) {
82     if (size <= fact.factor) {
83       XBT_DEBUG("%f <= %zu return %f", size, fact.factor, current);
84       return current;
85     } else
86       current = fact.values.front();
87   }
88   XBT_DEBUG("%f > %zu return %f", size, smpi_lat_factor.back().factor, current);
89
90   return current;
91 }
92
93 double NetworkSmpiModel::bandwidthConstraint(double rate, double bound, double size)
94 {
95   return rate < 0 ? bound : std::min(bound, rate * bandwidthFactor(size));
96 }
97
98 /************
99  * Resource *
100  ************/
101
102 /**********
103  * Action *
104  **********/
105 }
106 }