Logo AND Algorithmique Numérique Distribuée

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