Logo AND Algorithmique Numérique Distribuée

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