Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move MPI_COMM_WORLD to smpi_comm.cpp.
[simgrid.git] / src / smpi / internals / smpi_global.cpp
1 /* Copyright (c) 2007-2021. 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 "mc/mc.h"
7 #include "simgrid/s4u/Engine.hpp"
8 #include "simgrid/plugins/file_system.h"
9 #include "smpi_coll.hpp"
10 #include "smpi_f2c.hpp"
11 #include "smpi_host.hpp"
12 #include "smpi_config.hpp"
13 #include "src/kernel/activity/CommImpl.hpp"
14 #include "src/simix/smx_private.hpp"
15 #include "src/smpi/include/smpi_actor.hpp"
16 #include "xbt/config.hpp"
17 #include "xbt/file.hpp"
18
19 #include <algorithm>
20 #include <array>
21 #include <boost/algorithm/string.hpp> /* split */
22 #include <boost/tokenizer.hpp>
23 #include <boost/core/demangle.hpp>
24 #include <cerrno>
25 #include <cinttypes>
26 #include <cstdint> /* intmax_t */
27 #include <cstring> /* strerror */
28 #include <dlfcn.h>
29 #include <fcntl.h>
30 #include <fstream>
31 #include <sys/stat.h>
32
33 #if SG_HAVE_SENDFILE
34 #include <sys/sendfile.h>
35 #endif
36
37 #if HAVE_PAPI
38 #include "papi.h"
39 #endif
40
41 #if not defined(__APPLE__) && not defined(__HAIKU__)
42 #include <link.h>
43 #endif
44
45 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_kernel, smpi, "Logging specific to SMPI (kernel)");
46
47 #if SMPI_IFORT
48   extern "C" void for_rtl_init_ (int *, char **);
49   extern "C" void for_rtl_finish_ ();
50 #elif SMPI_FLANG
51   extern "C" void __io_set_argc(int);
52   extern "C" void __io_set_argv(char **);
53 #elif SMPI_GFORTRAN
54   extern "C" void _gfortran_set_args(int, char **);
55 #endif
56
57 /* RTLD_DEEPBIND is a bad idea of GNU ld that obviously does not exist on other platforms
58  * See https://www.akkadia.org/drepper/dsohowto.pdf
59  * and https://lists.freebsd.org/pipermail/freebsd-current/2016-March/060284.html
60 */
61 #if !RTLD_DEEPBIND || HAVE_SANITIZER_ADDRESS || HAVE_SANITIZER_THREAD
62 #define WANT_RTLD_DEEPBIND 0
63 #else
64 #define WANT_RTLD_DEEPBIND RTLD_DEEPBIND
65 #endif
66
67 #if HAVE_PAPI
68 std::map</* computation unit name */ std::string, papi_process_data, std::less<>> units2papi_setup;
69 #endif
70
71 std::unordered_map<std::string, double> location2speedup;
72
73 static int smpi_exit_status = 0;
74 extern double smpi_total_benched_time;
75 xbt_os_timer_t global_timer;
76 static std::vector<std::string> privatize_libs_paths;
77
78 // No instance gets manually created; check also the smpirun.in script as
79 // this default name is used there as well (when the <actor> tag is generated).
80 static const std::string smpi_default_instance_name("smpirun");
81 static simgrid::config::Flag<double> smpi_init_sleep(
82   "smpi/init", "Time to inject inside a call to MPI_Init", 0.0);
83
84 void (*smpi_comm_copy_data_callback)(simgrid::kernel::activity::CommImpl*, void*,
85                                      size_t) = &smpi_comm_copy_buffer_callback;
86
87 simgrid::smpi::ActorExt* smpi_process()
88 {
89   simgrid::s4u::ActorPtr me = simgrid::s4u::Actor::self();
90
91   if (me == nullptr) // This happens sometimes (eg, when linking against NS3 because it pulls openMPI...)
92     return nullptr;
93
94   return me->extension<simgrid::smpi::ActorExt>();
95 }
96
97 simgrid::smpi::ActorExt* smpi_process_remote(simgrid::s4u::ActorPtr actor)
98 {
99   if (actor.get() == nullptr)
100     return nullptr;
101   return actor->extension<simgrid::smpi::ActorExt>();
102 }
103
104 MPI_Comm smpi_process_comm_self(){
105   return smpi_process()->comm_self();
106 }
107
108 MPI_Info smpi_process_info_env(){
109   return smpi_process()->info_env();
110 }
111
112 void * smpi_process_get_user_data(){
113   return simgrid::s4u::Actor::self()->get_data();
114 }
115
116 void smpi_process_set_user_data(void *data){
117   simgrid::s4u::Actor::self()->set_data(data);
118 }
119
120 void smpi_comm_set_copy_data_callback(void (*callback) (smx_activity_t, void*, size_t))
121 {
122   static void (*saved_callback)(smx_activity_t, void*, size_t);
123   saved_callback               = callback;
124   smpi_comm_copy_data_callback = [](simgrid::kernel::activity::CommImpl* comm, void* buff, size_t size) {
125     saved_callback(comm, buff, size);
126   };
127 }
128
129 static void memcpy_private(void* dest, const void* src, const std::vector<std::pair<size_t, size_t>>& private_blocks)
130 {
131   for (auto const& block : private_blocks)
132     memcpy((uint8_t*)dest+block.first, (uint8_t*)src+block.first, block.second-block.first);
133 }
134
135 static void check_blocks(const std::vector<std::pair<size_t, size_t>>& private_blocks, size_t buff_size)
136 {
137   for (auto const& block : private_blocks)
138     xbt_assert(block.first <= block.second && block.second <= buff_size, "Oops, bug in shared malloc.");
139 }
140
141 static void smpi_cleanup_comm_after_copy(simgrid::kernel::activity::CommImpl* comm, void* buff){
142   if (comm->detached()) {
143     // if this is a detached send, the source buffer was duplicated by SMPI
144     // sender to make the original buffer available to the application ASAP
145     xbt_free(buff);
146     //It seems that the request is used after the call there this should be free somewhere else but where???
147     //xbt_free(comm->comm.src_data);// inside SMPI the request is kept inside the user data and should be free
148     comm->src_buff_ = nullptr;
149   }
150 }
151
152 void smpi_comm_copy_buffer_callback(simgrid::kernel::activity::CommImpl* comm, void* buff, size_t buff_size)
153 {
154   size_t src_offset                     = 0;
155   size_t dst_offset                     = 0;
156   std::vector<std::pair<size_t, size_t>> src_private_blocks;
157   std::vector<std::pair<size_t, size_t>> dst_private_blocks;
158   XBT_DEBUG("Copy the data over");
159   if(smpi_is_shared(buff, src_private_blocks, &src_offset)) {
160     src_private_blocks = shift_and_frame_private_blocks(src_private_blocks, src_offset, buff_size);
161     if (src_private_blocks.empty()) { // simple shared malloc ... return.
162       XBT_VERB("Sender is shared. Let's ignore it.");
163       smpi_cleanup_comm_after_copy(comm, buff);
164       return;
165     }
166   }
167   else {
168     src_private_blocks.clear();
169     src_private_blocks.emplace_back(0, buff_size);
170   }
171   if (smpi_is_shared((char*)comm->dst_buff_, dst_private_blocks, &dst_offset)) {
172     dst_private_blocks = shift_and_frame_private_blocks(dst_private_blocks, dst_offset, buff_size);
173     if (dst_private_blocks.empty()) { // simple shared malloc ... return.
174       XBT_VERB("Receiver is shared. Let's ignore it.");
175       smpi_cleanup_comm_after_copy(comm, buff);
176       return;
177     }
178   }
179   else {
180     dst_private_blocks.clear();
181     dst_private_blocks.emplace_back(0, buff_size);
182   }
183   check_blocks(src_private_blocks, buff_size);
184   check_blocks(dst_private_blocks, buff_size);
185   auto private_blocks = merge_private_blocks(src_private_blocks, dst_private_blocks);
186   check_blocks(private_blocks, buff_size);
187   void* tmpbuff=buff;
188   if ((smpi_cfg_privatization() == SmpiPrivStrategies::MMAP) &&
189       (static_cast<char*>(buff) >= smpi_data_exe_start) &&
190       (static_cast<char*>(buff) < smpi_data_exe_start + smpi_data_exe_size)) {
191     XBT_DEBUG("Privatization : We are copying from a zone inside global memory... Saving data to temp buffer !");
192     smpi_switch_data_segment(comm->src_actor_->get_iface());
193     tmpbuff = xbt_malloc(buff_size);
194     memcpy_private(tmpbuff, buff, private_blocks);
195   }
196
197   if ((smpi_cfg_privatization() == SmpiPrivStrategies::MMAP) &&
198       ((char*)comm->dst_buff_ >= smpi_data_exe_start) &&
199       ((char*)comm->dst_buff_ < smpi_data_exe_start + smpi_data_exe_size)) {
200     XBT_DEBUG("Privatization : We are copying to a zone inside global memory - Switch data segment");
201     smpi_switch_data_segment(comm->dst_actor_->get_iface());
202   }
203   XBT_DEBUG("Copying %zu bytes from %p to %p", buff_size, tmpbuff, comm->dst_buff_);
204   memcpy_private(comm->dst_buff_, tmpbuff, private_blocks);
205
206   smpi_cleanup_comm_after_copy(comm,buff);
207   if (tmpbuff != buff)
208     xbt_free(tmpbuff);
209 }
210
211 void smpi_comm_null_copy_buffer_callback(simgrid::kernel::activity::CommImpl*, void*, size_t)
212 {
213   /* nothing done in this version */
214 }
215
216 int smpi_enabled() {
217   return MPI_COMM_WORLD != MPI_COMM_UNINITIALIZED;
218 }
219
220 static void smpi_init_papi()
221 {
222 #if HAVE_PAPI
223   // This map holds for each computation unit (such as "default" or "process1" etc.)
224   // the configuration as given by the user (counter data as a pair of (counter_name, counter_counter))
225   // and the (computed) event_set.
226
227   if (not smpi_cfg_papi_events_file().empty()) {
228     if (PAPI_library_init(PAPI_VER_CURRENT) != PAPI_VER_CURRENT)
229       XBT_ERROR("Could not initialize PAPI library; is it correctly installed and linked?"
230                 " Expected version is %u", PAPI_VER_CURRENT);
231
232     using Tokenizer = boost::tokenizer<boost::char_separator<char>>;
233     boost::char_separator<char> separator_units(";");
234     std::string str = smpi_cfg_papi_events_file();
235     Tokenizer tokens(str, separator_units);
236
237     // Iterate over all the computational units. This could be processes, hosts, threads, ranks... You name it.
238     // I'm not exactly sure what we will support eventually, so I'll leave it at the general term "units".
239     for (auto const& unit_it : tokens) {
240       boost::char_separator<char> separator_events(":");
241       Tokenizer event_tokens(unit_it, separator_events);
242
243       int event_set = PAPI_NULL;
244       if (PAPI_create_eventset(&event_set) != PAPI_OK) {
245         // TODO: Should this let the whole simulation die?
246         XBT_CRITICAL("Could not create PAPI event set during init.");
247       }
248
249       // NOTE: We cannot use a map here, as we must obey the order of the counters
250       // This is important for PAPI: We need to map the values of counters back to the event_names (so, when PAPI_read()
251       // has finished)!
252       papi_counter_t counters2values;
253
254       // Iterate over all counters that were specified for this specific unit.
255       // Note that we need to remove the name of the unit (that could also be the "default" value), which always comes
256       // first. Hence, we start at ++(events.begin())!
257       for (Tokenizer::iterator events_it = ++(event_tokens.begin()); events_it != event_tokens.end(); ++events_it) {
258         int event_code   = PAPI_NULL;
259         auto* event_name = const_cast<char*>((*events_it).c_str());
260         if (PAPI_event_name_to_code(event_name, &event_code) != PAPI_OK) {
261           XBT_CRITICAL("Could not find PAPI event '%s'. Skipping.", event_name);
262           continue;
263         }
264         if (PAPI_add_event(event_set, event_code) != PAPI_OK) {
265           XBT_ERROR("Could not add PAPI event '%s'. Skipping.", event_name);
266           continue;
267         }
268         XBT_DEBUG("Successfully added PAPI event '%s' to the event set.", event_name);
269
270         counters2values.emplace_back(*events_it, 0LL);
271       }
272
273       std::string unit_name    = *(event_tokens.begin());
274       papi_process_data config = {.counter_data = std::move(counters2values), .event_set = event_set};
275
276       units2papi_setup.insert(std::make_pair(unit_name, std::move(config)));
277     }
278   }
279 #endif
280 }
281
282 using smpi_entry_point_type         = std::function<int(int argc, char* argv[])>;
283 using smpi_c_entry_point_type       = int (*)(int argc, char** argv);
284 using smpi_fortran_entry_point_type = void (*)();
285
286 template <typename F>
287 static int smpi_run_entry_point(const F& entry_point, const std::string& executable_path, std::vector<std::string> args)
288 {
289   // copy C strings, we need them writable
290   auto* args4argv = new std::vector<char*>(args.size());
291   std::transform(begin(args), end(args), begin(*args4argv), [](const std::string& s) { return xbt_strdup(s.c_str()); });
292
293   // set argv[0] to executable_path
294   xbt_free((*args4argv)[0]);
295   (*args4argv)[0] = xbt_strdup(executable_path.c_str());
296
297 #if !SMPI_IFORT
298   // take a copy of args4argv to keep reference of the allocated strings
299   const std::vector<char*> args2str(*args4argv);
300 #endif
301   int argc = args4argv->size();
302   args4argv->push_back(nullptr);
303   char** argv = args4argv->data();
304
305 #if SMPI_IFORT
306   for_rtl_init_ (&argc, argv);
307 #elif SMPI_FLANG
308   __io_set_argc(argc);
309   __io_set_argv(argv);
310 #elif SMPI_GFORTRAN
311   _gfortran_set_args(argc, argv);
312 #endif 
313   int res = entry_point(argc, argv);
314
315 #if SMPI_IFORT
316   for_rtl_finish_ ();
317 #else
318   for (char* s : args2str)
319     xbt_free(s);
320   delete args4argv;
321 #endif
322
323   if (res != 0){
324     XBT_WARN("SMPI process did not return 0. Return value : %d", res);
325     if (smpi_exit_status == 0)
326       smpi_exit_status = res;
327   }
328   return 0;
329 }
330
331
332 // TODO, remove the number of functions involved here
333 static smpi_entry_point_type smpi_resolve_function(void* handle)
334 {
335   auto* entry_point_fortran = reinterpret_cast<smpi_fortran_entry_point_type>(dlsym(handle, "user_main_"));
336   if (entry_point_fortran != nullptr) {
337     return [entry_point_fortran](int, char**) {
338       entry_point_fortran();
339       return 0;
340     };
341   }
342
343   auto* entry_point = reinterpret_cast<smpi_c_entry_point_type>(dlsym(handle, "main"));
344   if (entry_point != nullptr) {
345     return entry_point;
346   }
347
348   return smpi_entry_point_type();
349 }
350
351 static void smpi_copy_file(const std::string& src, const std::string& target, off_t fdin_size)
352 {
353   int fdin = open(src.c_str(), O_RDONLY);
354   xbt_assert(fdin >= 0, "Cannot read from %s. Please make sure that the file exists and is executable.", src.c_str());
355   XBT_ATTRIB_UNUSED int unlink_status = unlink(target.c_str());
356   xbt_assert(unlink_status == 0 || errno == ENOENT, "Failed to unlink file %s: %s", target.c_str(), strerror(errno));
357   int fdout = open(target.c_str(), O_CREAT | O_RDWR | O_EXCL, S_IRWXU);
358   xbt_assert(fdout >= 0, "Cannot write into %s: %s", target.c_str(), strerror(errno));
359
360   XBT_DEBUG("Copy %" PRIdMAX " bytes into %s", static_cast<intmax_t>(fdin_size), target.c_str());
361 #if SG_HAVE_SENDFILE
362   ssize_t sent_size = sendfile(fdout, fdin, nullptr, fdin_size);
363   if (sent_size == fdin_size) {
364     close(fdin);
365     close(fdout);
366     return;
367   } else if (sent_size != -1 || errno != ENOSYS) {
368     xbt_die("Error while copying %s: only %zd bytes copied instead of %" PRIdMAX " (errno: %d -- %s)", target.c_str(),
369             sent_size, static_cast<intmax_t>(fdin_size), errno, strerror(errno));
370   }
371 #endif
372   // If this point is reached, sendfile() actually is not available.  Copy file by hand.
373   std::vector<unsigned char> buf(1024 * 1024 * 4);
374   while (ssize_t got = read(fdin, buf.data(), buf.size())) {
375     if (got == -1) {
376       xbt_assert(errno == EINTR, "Cannot read from %s", src.c_str());
377     } else {
378       const unsigned char* p = buf.data();
379       ssize_t todo           = got;
380       while (ssize_t done = write(fdout, p, todo)) {
381         if (done == -1) {
382           xbt_assert(errno == EINTR, "Cannot write into %s", target.c_str());
383         } else {
384           p += done;
385           todo -= done;
386         }
387       }
388     }
389   }
390   close(fdin);
391   close(fdout);
392 }
393
394 #if not defined(__APPLE__) && not defined(__HAIKU__)
395 static int visit_libs(struct dl_phdr_info* info, size_t, void* data)
396 {
397   auto* libname    = static_cast<std::string*>(data);
398   std::string path = info->dlpi_name;
399   if (path.find(*libname) != std::string::npos) {
400     *libname = std::move(path);
401     return 1;
402   }
403   return 0;
404 }
405 #endif
406
407 static void smpi_init_privatization_dlopen(const std::string& executable)
408 {
409   // Prepare the copy of the binary (get its size)
410   struct stat fdin_stat;
411   stat(executable.c_str(), &fdin_stat);
412   off_t fdin_size         = fdin_stat.st_size;
413
414   std::string libnames = simgrid::config::get_value<std::string>("smpi/privatize-libs");
415   if (not libnames.empty()) {
416     // split option
417     std::vector<std::string> privatize_libs;
418     boost::split(privatize_libs, libnames, boost::is_any_of(";"));
419
420     for (auto const& libname : privatize_libs) {
421       // load the library once to add it to the local libs, to get the absolute path
422       void* libhandle = dlopen(libname.c_str(), RTLD_LAZY);
423       xbt_assert(libhandle != nullptr, 
424                       "Cannot dlopen %s - check your settings in smpi/privatize-libs", libname.c_str());
425       // get library name from path
426       std::string fullpath = libname;
427 #if not defined(__APPLE__) && not defined(__HAIKU__)
428       XBT_ATTRIB_UNUSED int dl_iterate_res = dl_iterate_phdr(visit_libs, &fullpath);
429       xbt_assert(dl_iterate_res != 0, "Can't find a linked %s - check your settings in smpi/privatize-libs",
430                  fullpath.c_str());
431       XBT_DEBUG("Extra lib to privatize '%s' found", fullpath.c_str());
432 #else
433       xbt_die("smpi/privatize-libs is not (yet) compatible with OSX nor with Haiku");
434 #endif
435       privatize_libs_paths.emplace_back(std::move(fullpath));
436       dlclose(libhandle);
437     }
438   }
439
440   simgrid::s4u::Engine::get_instance()->register_default([executable, fdin_size](std::vector<std::string> args) {
441     return std::function<void()>([executable, fdin_size, args] {
442       static std::size_t rank = 0;
443       // Copy the dynamic library:
444       simgrid::xbt::Path path(executable);
445       std::string target_executable = simgrid::config::get_value<std::string>("smpi/tmpdir") + "/" +
446           path.get_base_name() + "_" + std::to_string(getpid()) + "_" + std::to_string(rank) + ".so";
447
448       smpi_copy_file(executable, target_executable, fdin_size);
449       // if smpi/privatize-libs is set, duplicate pointed lib and link each executable copy to a different one.
450       std::vector<std::string> target_libs;
451       for (auto const& libpath : privatize_libs_paths) {
452         // if we were given a full path, strip it
453         size_t index = libpath.find_last_of("/\\");
454         std::string libname;
455         if (index != std::string::npos)
456           libname = libpath.substr(index + 1);
457
458         if (not libname.empty()) {
459           // load the library to add it to the local libs, to get the absolute path
460           struct stat fdin_stat2;
461           stat(libpath.c_str(), &fdin_stat2);
462           off_t fdin_size2 = fdin_stat2.st_size;
463
464           // Copy the dynamic library, the new name must be the same length as the old one
465           // just replace the name with 7 digits for the rank and the rest of the name.
466           auto pad                   = std::min<unsigned>(7, libname.length());
467           std::string target_libname = std::string(pad - std::to_string(rank).length(), '0') + std::to_string(rank) + libname.substr(pad);
468           std::string target_lib = simgrid::config::get_value<std::string>("smpi/tmpdir") + "/" + target_libname;
469           target_libs.push_back(target_lib);
470           XBT_DEBUG("copy lib %s to %s, with size %lld", libpath.c_str(), target_lib.c_str(), (long long)fdin_size2);
471           smpi_copy_file(libpath, target_lib, fdin_size2);
472
473           std::string sedcommand = "sed -i -e 's/" + libname + "/" + target_libname + "/g' " + target_executable;
474           int status             = system(sedcommand.c_str());
475           xbt_assert(status == 0, "error while applying sed command %s \n", sedcommand.c_str());
476         }
477       }
478
479       rank++;
480       // Load the copy and resolve the entry point:
481       void* handle    = dlopen(target_executable.c_str(), RTLD_LAZY | RTLD_LOCAL | WANT_RTLD_DEEPBIND);
482       int saved_errno = errno;
483       if (not simgrid::config::get_value<bool>("smpi/keep-temps")) {
484         unlink(target_executable.c_str());
485         for (const std::string& target_lib : target_libs)
486           unlink(target_lib.c_str());
487       }
488       xbt_assert(handle != nullptr,
489                  "dlopen failed: %s (errno: %d -- %s).\nError: Did you compile the program with a SMPI-specific "
490                  "compiler (spmicc or friends)?",
491                  dlerror(), saved_errno, strerror(saved_errno));
492
493       smpi_entry_point_type entry_point = smpi_resolve_function(handle);
494       xbt_assert(entry_point, "Could not resolve entry point");
495       smpi_run_entry_point(entry_point, executable, args);
496     });
497   });
498 }
499
500 static void smpi_init_privatization_no_dlopen(const std::string& executable)
501 {
502   if (smpi_cfg_privatization() == SmpiPrivStrategies::MMAP)
503     smpi_prepare_global_memory_segment();
504
505   // Load the dynamic library and resolve the entry point:
506   void* handle = dlopen(executable.c_str(), RTLD_LAZY | RTLD_LOCAL);
507   xbt_assert(handle != nullptr, "dlopen failed for %s: %s (errno: %d -- %s)", executable.c_str(), dlerror(), errno,
508              strerror(errno));
509   smpi_entry_point_type entry_point = smpi_resolve_function(handle);
510   xbt_assert(entry_point, "main not found in %s", executable.c_str());
511
512   if (smpi_cfg_privatization() == SmpiPrivStrategies::MMAP)
513     smpi_backup_global_memory_segment();
514
515   // Execute the same entry point for each simulated process:
516   simgrid::s4u::Engine::get_instance()->register_default([entry_point, executable](std::vector<std::string> args) {
517     return std::function<void()>(
518         [entry_point, executable, args] { smpi_run_entry_point(entry_point, executable, args); });
519   });
520 }
521
522 int smpi_main(const char* executable, int argc, char* argv[])
523 {
524   if (getenv("SMPI_PRETEND_CC") != nullptr) {
525     /* Hack to ensure that smpicc can pretend to be a simple compiler. Particularly handy to pass it to the
526      * configuration tools */
527     return 0;
528   }
529   
530   SMPI_switch_data_segment = &smpi_switch_data_segment;
531   smpi_init_options();
532   simgrid::instr::init();
533   SIMIX_global_init(&argc, argv);
534
535   auto engine              = simgrid::s4u::Engine::get_instance();
536
537   sg_storage_file_system_init();
538   // parse the platform file: get the host list
539   engine->load_platform(argv[1]);
540   SIMIX_comm_set_copy_data_callback(smpi_comm_copy_buffer_callback);
541
542   if (smpi_cfg_privatization() == SmpiPrivStrategies::DLOPEN)
543     smpi_init_privatization_dlopen(executable);
544   else
545     smpi_init_privatization_no_dlopen(executable);
546
547   simgrid::smpi::colls::set_collectives();
548   simgrid::smpi::colls::smpi_coll_cleanup_callback = nullptr;
549   
550   SMPI_init();
551
552   /* This is a ... heavy way to count the MPI ranks */
553   int rank_counts = 0;
554   simgrid::s4u::Actor::on_creation.connect([&rank_counts](const simgrid::s4u::Actor& actor) {
555     if (not actor.is_daemon())
556       rank_counts++;
557   });
558   engine->load_deployment(argv[2]);
559
560   SMPI_app_instance_register(smpi_default_instance_name.c_str(), nullptr, rank_counts);
561   MPI_COMM_WORLD = *smpi_deployment_comm_world(smpi_default_instance_name);
562
563   /* Clean IO before the run */
564   fflush(stdout);
565   fflush(stderr);
566
567   if (MC_is_active()) {
568     MC_run();
569   } else {
570     SIMIX_run();
571
572     xbt_os_walltimer_stop(global_timer);
573     if (simgrid::config::get_value<bool>("smpi/display-timing")) {
574       double global_time = xbt_os_timer_elapsed(global_timer);
575       XBT_INFO("Simulated time: %g seconds. \n\n"
576           "The simulation took %g seconds (after parsing and platform setup)\n"
577           "%g seconds were actual computation of the application",
578           SIMIX_get_clock(), global_time , smpi_total_benched_time);
579
580       if (smpi_total_benched_time/global_time>=0.75)
581       XBT_INFO("More than 75%% of the time was spent inside the application code.\n"
582       "You may want to use sampling functions or trace replay to reduce this.");
583     }
584   }
585   SMPI_finalize();
586
587   return smpi_exit_status;
588 }
589
590 // Called either directly from the user code, or from the code called by smpirun
591 void SMPI_init(){
592   smpi_init_options();
593   simgrid::s4u::Actor::on_creation.connect([](simgrid::s4u::Actor& actor) {
594     if (not actor.is_daemon())
595       actor.extension_set<simgrid::smpi::ActorExt>(new simgrid::smpi::ActorExt(&actor));
596   });
597   simgrid::s4u::Host::on_creation.connect(
598       [](simgrid::s4u::Host& host) { host.extension_set(new simgrid::smpi::Host(&host)); });
599   for (auto const& host : simgrid::s4u::Engine::get_instance()->get_all_hosts())
600     host->extension_set(new simgrid::smpi::Host(host));
601
602   if (not MC_is_active()) {
603     global_timer = xbt_os_timer_new();
604     xbt_os_walltimer_start(global_timer);
605   }
606   smpi_init_papi();
607   smpi_check_options();
608 }
609
610 void SMPI_finalize()
611 {
612   smpi_bench_destroy();
613   smpi_shared_destroy();
614   smpi_deployment_cleanup_instances();
615
616   if (simgrid::smpi::colls::smpi_coll_cleanup_callback != nullptr)
617     simgrid::smpi::colls::smpi_coll_cleanup_callback();
618
619   MPI_COMM_WORLD = MPI_COMM_NULL;
620
621   if (not MC_is_active()) {
622     xbt_os_timer_free(global_timer);
623   }
624
625   if (smpi_cfg_privatization() == SmpiPrivStrategies::MMAP)
626     smpi_destroy_global_memory_segments();
627
628   if (simgrid::smpi::F2C::lookup() != nullptr &&
629       simgrid::smpi::F2C::lookup()->size() > simgrid::smpi::F2C::get_num_default_handles()) {
630     XBT_WARN("Probable memory leaks in your code: SMPI detected %zu unfreed MPI handles : "
631              "display types and addresses (n max) with --cfg=smpi/list-leaks:n.\n"
632              "Running smpirun with -wrapper \"valgrind --leak-check=full\" can provide more information",
633              simgrid::smpi::F2C::lookup()->size() - simgrid::smpi::F2C::get_num_default_handles());
634     int n = simgrid::config::get_value<int>("smpi/list-leaks");
635     for (auto const& p : *simgrid::smpi::F2C::lookup()) {
636       static int printed = 0;
637       if (printed >= n)
638         break;
639       if (p.first >= simgrid::smpi::F2C::get_num_default_handles()) {
640         XBT_WARN("Leak %p of type %s", p.second, boost::core::demangle(typeid(*(p.second)).name()).c_str());
641         printed++;
642       }
643     }
644   }
645 }
646
647 void smpi_mpi_init() {
648   smpi_init_fortran_types();
649   if(smpi_init_sleep > 0)
650     simgrid::s4u::this_actor::sleep_for(smpi_init_sleep);
651 }
652
653 void SMPI_thread_create() {
654   TRACE_smpi_init(simgrid::s4u::this_actor::get_pid(), __func__);
655 }