Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
s4u::Host->getLoad() returns the achieved speed in flops/s
[simgrid.git] / src / surf / network_smpi.cpp
1 /* Copyright (c) 2013-2017. 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_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/weight-S", 8775);
44 }
45
46 namespace simgrid {
47 namespace surf {
48
49 NetworkSmpiModel::NetworkSmpiModel() : NetworkCm02Model()
50 {
51 }
52
53 NetworkSmpiModel::~NetworkSmpiModel() = default;
54
55 double NetworkSmpiModel::bandwidthFactor(double size)
56 {
57   if (smpi_bw_factor.empty())
58     smpi_bw_factor = parse_factor(xbt_cfg_get_string("smpi/bw-factor"));
59
60   double current = 1.0;
61   for (auto const& fact : smpi_bw_factor) {
62     if (size <= fact.factor) {
63       XBT_DEBUG("%f <= %zu return %f", size, fact.factor, current);
64       return current;
65     } else
66       current = fact.values.front();
67   }
68   XBT_DEBUG("%f > %zu return %f", size, smpi_bw_factor.back().factor, current);
69
70   return current;
71 }
72
73 double NetworkSmpiModel::latencyFactor(double size)
74 {
75   if (smpi_lat_factor.empty())
76     smpi_lat_factor = parse_factor(xbt_cfg_get_string("smpi/lat-factor"));
77
78   double current = 1.0;
79   for (auto const& fact : smpi_lat_factor) {
80     if (size <= fact.factor) {
81       XBT_DEBUG("%f <= %zu return %f", size, fact.factor, current);
82       return current;
83     } else
84       current = fact.values.front();
85   }
86   XBT_DEBUG("%f > %zu return %f", size, smpi_lat_factor.back().factor, current);
87
88   return current;
89 }
90
91 double NetworkSmpiModel::bandwidthConstraint(double rate, double bound, double size)
92 {
93   return rate < 0 ? bound : std::min(bound, rate * bandwidthFactor(size));
94 }
95
96 /************
97  * Resource *
98  ************/
99
100 /**********
101  * Action *
102  **********/
103 }
104 }