Logo AND Algorithmique Numérique Distribuée

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