Logo AND Algorithmique Numérique Distribuée

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