Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill src/include
[simgrid.git] / src / smpi / internals / smpi_config.cpp
1 /* Copyright (c) 2008-2023. 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 #if defined(_GNU_SOURCE)
7   #define DEFINED_GNUSOURCE 1
8 #else
9   #define _GNU_SOURCE
10 #endif
11
12 #if defined(__linux__)
13   #include <features.h>
14 //inspired by https://stackoverflow.com/a/70211227
15   #if not defined(__USE_GNU)
16     #define __MUSL__
17   #endif
18 #endif
19
20 #ifndef DEFINED_GNUSOURCE
21   #undef _GNU_SOURCE
22 #endif
23
24 #include "include/xbt/config.hpp"
25 #include "private.hpp"
26 #include "smpi_coll.hpp"
27 #include "smpi_config.hpp"
28 #include "src/mc/mc.h"
29 #include "xbt/ex.h"
30 #include "xbt/parse_units.hpp"
31
32 #include <cfloat> /* DBL_MAX */
33 #include <boost/algorithm/string.hpp> /* trim */
34 #include <boost/tokenizer.hpp>
35
36 #if SIMGRID_HAVE_MC
37 #include "src/mc/mc_config.hpp"
38 #endif
39
40 #if defined(__APPLE__)
41 # include <AvailabilityMacros.h>
42 # ifndef MAC_OS_X_VERSION_10_12
43 #   define MAC_OS_X_VERSION_10_12 101200
44 # endif
45
46 constexpr bool HAVE_WORKING_MMAP = (MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_12);
47 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__sun) || defined(__HAIKU__) || defined(__MUSL__)
48 constexpr bool HAVE_WORKING_MMAP = false;
49 #else
50 constexpr bool HAVE_WORKING_MMAP = true;
51 #endif
52
53 SharedMallocType _smpi_cfg_shared_malloc = SharedMallocType::GLOBAL;
54 SmpiPrivStrategies _smpi_cfg_privatization = SmpiPrivStrategies::NONE;
55 double _smpi_cfg_host_speed;
56
57 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_config, smpi, "Logging specific to SMPI (config)");
58
59 simgrid::config::Flag<std::string> _smpi_cfg_host_speed_string{
60     "smpi/host-speed", "Speed of the host running the simulation (in flop/s). Used to bench the operations.", "20000f",
61     [](const std::string& str) {
62       _smpi_cfg_host_speed = xbt_parse_get_speed("smpi/host-speed", 1, str, "option smpi/host-speed");
63       xbt_assert(_smpi_cfg_host_speed > 0.0, "Invalid value (%s) for 'smpi/host-speed': it must be positive.",
64                  str.c_str());
65     }};
66
67 simgrid::config::Flag<bool> _smpi_cfg_simulate_computation{
68   "smpi/simulate-computation", "Whether the computational part of the simulated application should be simulated.",
69    true};
70 simgrid::config::Flag<std::string> _smpi_cfg_shared_malloc_string{
71     "smpi/shared-malloc", "Whether SMPI_SHARED_MALLOC is enabled. Disable it for debugging purposes.", "global",
72     [](const std::string& val) {
73       if ((val == "yes") || (val == "1") || (val == "on") || (val == "global")) {
74         _smpi_cfg_shared_malloc = SharedMallocType::GLOBAL;
75       } else if (val == "local") {
76         _smpi_cfg_shared_malloc = SharedMallocType::LOCAL;
77       } else if ((val == "no") || (val == "0") || (val == "off")) {
78         _smpi_cfg_shared_malloc = SharedMallocType::NONE;
79       } else {
80         xbt_die("Invalid value '%s' for option smpi/shared-malloc. Possible values: 'on' or 'global', 'local', 'off'",
81                 val.c_str());
82       }
83     }};
84
85 simgrid::config::Flag<double> _smpi_cfg_cpu_threshold{
86   "smpi/cpu-threshold", "Minimal computation time (in seconds) not discarded, or -1 for infinity.", 1e-6,
87   [](const double& val){
88     if (val < 0)
89       _smpi_cfg_cpu_threshold = DBL_MAX;
90   }};
91
92 simgrid::config::Flag<int> _smpi_cfg_async_small_thresh{"smpi/async-small-thresh",
93                                                         "Maximal size of messages that are to be sent asynchronously, without waiting for the receiver",
94                                                         0};
95 simgrid::config::Flag<int> _smpi_cfg_detached_send_thresh{
96     "smpi/send-is-detached-thresh",
97     "Threshold of message size where MPI_Send stops behaving like MPI_Isend and becomes MPI_Ssend", 65536};
98 simgrid::config::Flag<bool> _smpi_cfg_grow_injected_times{"smpi/grow-injected-times",
99                                                           "Whether we want to make the injected time in MPI_Iprobe and MPI_Test grow, to "
100                                                           "allow faster simulation. This can make simulation less precise, though.",
101                                                           true};
102 simgrid::config::Flag<double> _smpi_cfg_iprobe_cpu_usage{"smpi/iprobe-cpu-usage",
103                                                         "Maximum usage of CPUs by MPI_Iprobe() calls. We've observed that MPI_Iprobes "
104                                                         "consume significantly less power than the maximum of a specific application. "
105                                                         "This value is then (Iprobe_Usage/Max_Application_Usage).",
106                                                         1.0};
107
108 simgrid::config::Flag<bool>  _smpi_cfg_trace_call_location{"smpi/trace-call-location",
109                                                            "Should filename and linenumber of MPI calls be traced?", false};
110 simgrid::config::Flag<bool> _smpi_cfg_trace_call_use_absolute_path{"smpi/trace-call-use-absolute-path",
111                                                                    "Should filenames for trace-call tracing be absolute or not?", false};
112 simgrid::config::Flag<std::string> _smpi_cfg_comp_adjustment_file{
113     "smpi/comp-adjustment-file", "A file containing speedups or slowdowns for some parts of the code.", "",
114     [](const std::string& filename) {
115       if (not filename.empty()) {
116         std::ifstream fstream(filename);
117         xbt_assert(fstream.is_open(), "Could not open file %s. Does it exist?", filename.c_str());
118         std::string line;
119         using Tokenizer = boost::tokenizer<boost::escaped_list_separator<char>>;
120         std::getline(fstream, line); // Skip the header line
121         while (std::getline(fstream, line)) {
122           Tokenizer tok(line);
123           auto it              = tok.begin();
124           auto end             = std::next(tok.begin());
125           std::string location = *it;
126           boost::trim(location);
127           location2speedup.try_emplace(location, std::stod(*end));
128         }
129       }
130     }};
131
132 simgrid::config::Flag<bool> _smpi_cfg_default_errhandler_is_error{
133   "smpi/errors-are-fatal", "Whether MPI errors are fatal or just return. Default is true", true };
134 simgrid::config::Flag<bool> _smpi_cfg_pedantic{
135   "smpi/pedantic", "Activate extra checks that may crash slightly incorrect codes which would not crash on actual implementations", false };
136 simgrid::config::Flag<double> _smpi_init_sleep(
137   "smpi/init", "Time to inject inside a call to MPI_Init", 0.0);
138 #if HAVE_PAPI
139   simgrid::config::Flag<std::string> _smpi_cfg_papi_events_file{"smpi/papi-events",
140                                                                 "This switch enables tracking the specified counters with PAPI", ""};
141 #endif
142
143 simgrid::config::Flag<double> _smpi_cfg_auto_shared_malloc_thresh("smpi/auto-shared-malloc-thresh",
144                                                                   "Threshold size for the automatic sharing of memory",
145                                                                   0);
146
147 simgrid::config::Flag<bool> _smpi_cfg_display_alloc("smpi/display-allocs",
148                                                     "Whether we should display a memory allocations analysis after simulation.",
149                                                      false);
150
151 simgrid::config::Flag<int> _smpi_cfg_list_leaks("smpi/list-leaks",
152                                                 "Whether we should display the n first MPI handle leaks (addresses and type only) after simulation",
153                                                 -1);
154
155 double smpi_cfg_host_speed(){
156   return _smpi_cfg_host_speed;
157 }
158
159 bool smpi_cfg_simulate_computation(){
160   return _smpi_cfg_simulate_computation;
161 }
162
163 SharedMallocType smpi_cfg_shared_malloc(){
164   return _smpi_cfg_shared_malloc;
165 }
166
167 double smpi_cfg_cpu_thresh(){
168   return _smpi_cfg_cpu_threshold;
169 }
170
171 SmpiPrivStrategies smpi_cfg_privatization(){
172   return _smpi_cfg_privatization;
173 }
174
175 int smpi_cfg_async_small_thresh(){
176   return _smpi_cfg_async_small_thresh;
177 }
178
179 int smpi_cfg_detached_send_thresh(){
180   return _smpi_cfg_detached_send_thresh;
181 }
182
183 bool smpi_cfg_grow_injected_times(){
184   return _smpi_cfg_grow_injected_times;
185 }
186
187 double smpi_cfg_iprobe_cpu_usage(){
188   return _smpi_cfg_iprobe_cpu_usage;
189 }
190
191 bool smpi_cfg_trace_call_location(){
192   return _smpi_cfg_trace_call_location;
193 }
194
195 bool smpi_cfg_trace_call_use_absolute_path(){
196   return _smpi_cfg_trace_call_use_absolute_path;
197 }
198
199 bool smpi_cfg_display_alloc(){
200   return _smpi_cfg_list_leaks != -1 ? true : _smpi_cfg_display_alloc;
201 }
202
203 std::string smpi_cfg_comp_adjustment_file(){
204   return _smpi_cfg_comp_adjustment_file;
205 }
206 #if HAVE_PAPI
207 std::string smpi_cfg_papi_events_file(){
208   return _smpi_cfg_papi_events_file;
209 }
210 #endif
211 double smpi_cfg_auto_shared_malloc_thresh(){
212   return _smpi_cfg_auto_shared_malloc_thresh;
213 }
214
215 // public version declared in smpi.h (without parameter, and with C linkage)
216 void smpi_init_options()
217 {
218   smpi_init_options_internal(false);
219 }
220
221 void smpi_init_options_internal(bool called_by_smpi_main)
222 {
223   static bool smpi_options_initialized = false;
224   static bool running_with_smpi_main   = false;
225
226   if (called_by_smpi_main)
227     running_with_smpi_main = true;
228
229   // return if already called
230   if (smpi_options_initialized)
231     return;
232   simgrid::config::declare_flag<bool>("smpi/display-timing", "Whether we should display the timing after simulation.", false);
233   simgrid::config::declare_flag<bool>("smpi/keep-temps", "Whether we should keep the generated temporary files.", false);
234   simgrid::config::declare_flag<std::string>("smpi/tmpdir", "tmp dir for dlopen files", "/tmp");
235
236   simgrid::config::declare_flag<std::string>("smpi/coll-selector", "Which collective selector to use", "default");
237   simgrid::config::declare_flag<std::string>("smpi/gather", "Which collective to use for gather", "");
238   simgrid::config::declare_flag<std::string>("smpi/allgather", "Which collective to use for allgather", "");
239   simgrid::config::declare_flag<std::string>("smpi/barrier", "Which collective to use for barrier", "");
240   simgrid::config::declare_flag<std::string>("smpi/reduce_scatter", "Which collective to use for reduce_scatter", "");
241   simgrid::config::declare_flag<std::string>("smpi/scatter", "Which collective to use for scatter", "");
242   simgrid::config::declare_flag<std::string>("smpi/allgatherv", "Which collective to use for allgatherv", "");
243   simgrid::config::declare_flag<std::string>("smpi/allreduce", "Which collective to use for allreduce", "");
244   simgrid::config::declare_flag<std::string>("smpi/alltoall", "Which collective to use for alltoall", "");
245   simgrid::config::declare_flag<std::string>("smpi/alltoallv", "Which collective to use for alltoallv", "");
246   simgrid::config::declare_flag<std::string>("smpi/bcast", "Which collective to use for bcast", "");
247   simgrid::config::declare_flag<std::string>("smpi/reduce", "Which collective to use for reduce", "");
248
249   const char* default_privatization = std::getenv("SMPI_PRIVATIZATION");
250   if (default_privatization == nullptr)
251     default_privatization = "no";
252
253   simgrid::config::declare_flag<std::string>(
254       "smpi/privatization", "How we should privatize global variable at runtime (no, yes, mmap, dlopen).",
255       default_privatization, [](const std::string& smpi_privatize_option) {
256         if (smpi_privatize_option == "no" || smpi_privatize_option == "0")
257           _smpi_cfg_privatization = SmpiPrivStrategies::NONE;
258         else if (smpi_privatize_option == "yes" || smpi_privatize_option == "1")
259           _smpi_cfg_privatization = SmpiPrivStrategies::DEFAULT;
260         else if (smpi_privatize_option == "mmap")
261           _smpi_cfg_privatization = SmpiPrivStrategies::MMAP;
262         else if (smpi_privatize_option == "dlopen")
263           _smpi_cfg_privatization = SmpiPrivStrategies::DLOPEN;
264         else
265           xbt_die("Invalid value for smpi/privatization: '%s'", smpi_privatize_option.c_str());
266
267         if (not running_with_smpi_main) {
268           XBT_DEBUG("Running without smpi_main(); disable smpi/privatization.");
269           _smpi_cfg_privatization = SmpiPrivStrategies::NONE;
270         }
271         if (not HAVE_WORKING_MMAP && _smpi_cfg_privatization == SmpiPrivStrategies::MMAP) {
272           XBT_INFO("mmap privatization is broken on this platform, switching to dlopen privatization instead.");
273           _smpi_cfg_privatization = SmpiPrivStrategies::DLOPEN;
274         }
275       });
276
277   simgrid::config::declare_flag<std::string>(
278       "smpi/privatize-libs",
279       "Add libraries (; separated) to privatize (libgfortran for example)."
280       "You need to provide the full names of the files (libgfortran.so.4), or its full path",
281       "");
282   simgrid::config::declare_flag<double>("smpi/shared-malloc-blocksize",
283                                         "Size of the bogus file which will be created for global shared allocations",
284                                         1UL << 20);
285   simgrid::config::declare_flag<std::string>("smpi/shared-malloc-hugepage",
286                                              "Path to a mounted hugetlbfs, to use huge pages with shared malloc.", "");
287
288   simgrid::config::declare_flag<std::string>(
289       "smpi/os", "Small messages timings (MPI_Send minimum time for small messages)", "0:0:0:0:0");
290   simgrid::config::declare_flag<std::string>(
291       "smpi/ois", "Small messages timings (MPI_Isend minimum time for small messages)", "0:0:0:0:0");
292   simgrid::config::declare_flag<std::string>(
293       "smpi/or", "Small messages timings (MPI_Recv minimum time for small messages)", "0:0:0:0:0");
294
295   simgrid::config::declare_flag<bool>("smpi/barrier-finalization", {"smpi/finalization-barrier"},
296                                       "Do we add a barrier in MPI_Finalize or not", false);
297   simgrid::config::declare_flag<bool>("smpi/barrier-collectives",
298                                       "Inject a barrier in each colllective operation, to detect some deadlocks in "
299                                       "incorrect MPI codes, which may not be triggered in all cases",
300                                       false);
301
302   smpi_options_initialized = true;
303 }
304
305 void smpi_check_options()
306 {
307 #if SIMGRID_HAVE_MC
308   if (MC_is_active()) {
309     if (_sg_mc_buffering == "zero")
310       simgrid::config::set_value<int>("smpi/send-is-detached-thresh", 0);
311     else if (_sg_mc_buffering == "infty")
312       simgrid::config::set_value<int>("smpi/send-is-detached-thresh", INT_MAX);
313     else
314       THROW_IMPOSSIBLE;
315   }
316 #endif
317
318   xbt_assert(smpi_cfg_async_small_thresh() <= smpi_cfg_detached_send_thresh(),
319              "smpi/async-small-thresh (=%d) should be smaller or equal to smpi/send-is-detached-thresh (=%d)",
320              smpi_cfg_async_small_thresh(),
321              smpi_cfg_detached_send_thresh());
322
323   if (simgrid::config::is_default("smpi/host-speed") && not MC_is_active()) {
324     XBT_INFO("You did not set the power of the host running the simulation.  "
325              "The timings will certainly not be accurate.  "
326              "Use the option \"--cfg=smpi/host-speed:<flops>\" to set its value.  "
327              "Check "
328              "https://simgrid.org/doc/latest/Configuring_SimGrid.html#automatic-benchmarking-of-smpi-code for more "
329              "information.");
330   }
331
332   simgrid::smpi::colls::set_collectives();
333   simgrid::smpi::colls::smpi_coll_cleanup_callback = nullptr;
334 }
335