Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Apply the default settings of 'smpi/buffering' too
[simgrid.git] / src / smpi / internals / smpi_host.cpp
1 /* Copyright (c) 2017-2019. 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 "smpi_host.hpp"
7 #include "simgrid/s4u/VirtualMachine.hpp"
8 #include "smpi_utils.hpp"
9 #include "xbt/config.hpp"
10
11 #include <string>
12 #include <vector>
13 #include <xbt/log.h>
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_host, smpi, "Logging specific to SMPI (host)");
16
17 namespace simgrid {
18 namespace smpi {
19
20 xbt::Extension<s4u::Host, smpi::Host> Host::EXTENSION_ID;
21
22 double Host::orecv(size_t size)
23 {
24   double current = orecv_parsed_values.empty() ? 0.0 : orecv_parsed_values.front().values[0] +
25                                                            orecv_parsed_values.front().values[1] * size;
26
27   // Iterate over all the sections that were specified and find the right value. (fact.factor represents the interval
28   // sizes; we want to find the section that has fact.factor <= size and no other such fact.factor <= size)
29   // Note: parse_factor() (used before) already sorts the vector we iterate over!
30   for (auto const& fact : orecv_parsed_values) {
31     if (size <= fact.factor) { // Values already too large, use the previously computed value of current!
32       XBT_DEBUG("or : %zu <= %zu return %.10f", size, fact.factor, current);
33       return current;
34     } else {
35       // If the next section is too large, the current section must be used.
36       // Hence, save the cost, as we might have to use it.
37       current=fact.values[0]+fact.values[1]*size;
38     }
39   }
40   XBT_DEBUG("smpi_or: %zu is larger than largest boundary, return %.10f", size, current);
41
42   return current;
43 }
44
45 double Host::osend(size_t size)
46 {
47   double current =
48       osend_parsed_values.empty() ? 0.0 : osend_parsed_values[0].values[0] + osend_parsed_values[0].values[1] * size;
49   // Iterate over all the sections that were specified and find the right value. (fact.factor represents the interval
50   // sizes; we want to find the section that has fact.factor <= size and no other such fact.factor <= size)
51   // Note: parse_factor() (used before) already sorts the vector we iterate over!
52   for (auto const& fact : osend_parsed_values) {
53     if (size <= fact.factor) { // Values already too large, use the previously computed value of current!
54       XBT_DEBUG("os : %zu <= %zu return %.10f", size, fact.factor, current);
55       return current;
56     } else {
57       // If the next section is too large, the current section must be used.
58       // Hence, save the cost, as we might have to use it.
59       current = fact.values[0] + fact.values[1] * size;
60     }
61   }
62   XBT_DEBUG("Searching for smpi/os: %zu is larger than the largest boundary, return %.10f", size, current);
63
64   return current;
65 }
66
67 double Host::oisend(size_t size)
68 {
69   double current =
70       oisend_parsed_values.empty() ? 0.0 : oisend_parsed_values[0].values[0] + oisend_parsed_values[0].values[1] * size;
71
72   // Iterate over all the sections that were specified and find the right value. (fact.factor represents the interval
73   // sizes; we want to find the section that has fact.factor <= size and no other such fact.factor <= size)
74   // Note: parse_factor() (used before) already sorts the vector we iterate over!
75   for (auto const& fact : oisend_parsed_values) {
76     if (size <= fact.factor) { // Values already too large, use the previously  computed value of current!
77       XBT_DEBUG("ois : %zu <= %zu return %.10f", size, fact.factor, current);
78       return current;
79     } else {
80       // If the next section is too large, the current section must be used.
81       // Hence, save the cost, as we might have to use it.
82       current = fact.values[0] + fact.values[1] * size;
83     }
84   }
85   XBT_DEBUG("Searching for smpi/ois: %zu is larger than the largest boundary, return %.10f", size, current);
86
87   return current;
88 }
89
90 Host::Host(s4u::Host* ptr) : host(ptr)
91 {
92   if (not smpi::Host::EXTENSION_ID.valid())
93     smpi::Host::EXTENSION_ID = s4u::Host::extension_create<Host>();
94
95   const char* orecv_string = host->get_property("smpi/or");
96   if (orecv_string != nullptr) {
97     orecv_parsed_values = parse_factor(orecv_string);
98   } else {
99     orecv_parsed_values = parse_factor(config::get_value<std::string>("smpi/or"));
100   }
101
102   const char* osend_string = host->get_property("smpi/os");
103   if (osend_string != nullptr) {
104     osend_parsed_values = parse_factor(osend_string);
105   } else {
106     osend_parsed_values = parse_factor(config::get_value<std::string>("smpi/os"));
107   }
108
109   const char* oisend_string = host->get_property("smpi/ois");
110   if (oisend_string != nullptr) {
111     oisend_parsed_values = parse_factor(oisend_string);
112   } else {
113     oisend_parsed_values = parse_factor(config::get_value<std::string>("smpi/ois"));
114   }
115 }
116
117 } // namespace smpi
118 } // namespace simgrid