Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill dead code.
[simgrid.git] / src / smpi / internals / smpi_global.cpp
1 /* Copyright (c) 2007-2018. 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 "SmpiHost.hpp"
7 #include "mc/mc.h"
8 #include "private.hpp"
9 #include "simgrid/s4u/Host.hpp"
10 #include "simgrid/s4u/Mailbox.hpp"
11 #include "simgrid/s4u/forward.hpp"
12 #include "smpi_coll.hpp"
13 #include "smpi_comm.hpp"
14 #include "smpi_group.hpp"
15 #include "smpi_info.hpp"
16 #include "smpi_process.hpp"
17 #include "src/msg/msg_private.hpp"
18 #include "src/simix/smx_private.hpp"
19 #include "src/surf/surf_interface.hpp"
20 #include "xbt/config.hpp"
21
22 #include <cfloat> /* DBL_MAX */
23 #include <dlfcn.h>
24 #include <fcntl.h>
25 #include <fstream>
26 #include <sys/stat.h>
27
28 #if HAVE_SENDFILE
29 #include <sys/sendfile.h>
30 #endif
31
32 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_kernel, smpi, "Logging specific to SMPI (kernel)");
33 #include <boost/tokenizer.hpp>
34 #include <boost/algorithm/string.hpp> /* trim_right / trim_left */
35
36 #ifndef RTLD_DEEPBIND
37 /* RTLD_DEEPBIND is a bad idea of GNU ld that obviously does not exist on other platforms
38  * See https://www.akkadia.org/drepper/dsohowto.pdf
39  * and https://lists.freebsd.org/pipermail/freebsd-current/2016-March/060284.html
40 */
41 #define RTLD_DEEPBIND 0
42 #endif
43
44 #if HAVE_PAPI
45 #include "papi.h"
46 const char* papi_default_config_name = "default";
47
48 struct papi_process_data {
49   papi_counter_t counter_data;
50   int event_set;
51 };
52
53 #endif
54 using simgrid::s4u::Actor;
55 using simgrid::s4u::ActorPtr;
56 std::unordered_map<std::string, double> location2speedup;
57
58 static std::map</*process_id*/ ActorPtr, simgrid::smpi::Process*> process_data;
59 int process_count = 0;
60 int smpi_universe_size = 0;
61 extern double smpi_total_benched_time;
62 xbt_os_timer_t global_timer;
63 /**
64  * Setting MPI_COMM_WORLD to MPI_COMM_UNINITIALIZED (it's a variable)
65  * is important because the implementation of MPI_Comm checks
66  * "this == MPI_COMM_UNINITIALIZED"? If yes, it uses smpi_process()->comm_world()
67  * instead of "this".
68  * This is basically how we only have one global variable but all processes have
69  * different communicators (the one their SMPI instance uses).
70  *
71  * See smpi_comm.cpp and the functions therein for details.
72  */
73 MPI_Comm MPI_COMM_WORLD = MPI_COMM_UNINITIALIZED;
74 MPI_Errhandler *MPI_ERRORS_RETURN = nullptr;
75 MPI_Errhandler *MPI_ERRORS_ARE_FATAL = nullptr;
76 MPI_Errhandler *MPI_ERRHANDLER_NULL = nullptr;
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 char* smpi_default_instance_name = "smpirun";
80 static simgrid::config::Flag<double> smpi_wtime_sleep(
81   "smpi/wtime", "Minimum time to inject inside a call to MPI_Wtime", 0.0);
82 static simgrid::config::Flag<double> smpi_init_sleep(
83   "smpi/init", "Time to inject inside a call to MPI_Init", 0.0);
84
85 void (*smpi_comm_copy_data_callback) (smx_activity_t, void*, size_t) = &smpi_comm_copy_buffer_callback;
86
87 int smpi_process_count()
88 {
89   return process_count;
90 }
91
92 simgrid::smpi::Process* smpi_process()
93 {
94   ActorPtr me = Actor::self();
95   if (me == nullptr) // This happens sometimes (eg, when linking against NS3 because it pulls openMPI...)
96     return nullptr;
97   simgrid::msg::ActorExt* msgExt = static_cast<simgrid::msg::ActorExt*>(me->getImpl()->userdata);
98   return static_cast<simgrid::smpi::Process*>(msgExt->data);
99 }
100
101 simgrid::smpi::Process* smpi_process_remote(ActorPtr actor)
102 {
103   return process_data.at(actor);
104 }
105
106 MPI_Comm smpi_process_comm_self(){
107   return smpi_process()->comm_self();
108 }
109
110 void smpi_process_init(int *argc, char ***argv){
111   simgrid::smpi::Process::init(argc, argv);
112 }
113
114 int smpi_process_index(){
115   return simgrid::s4u::Actor::self()->getPid();
116 }
117
118 void * smpi_process_get_user_data(){
119   return smpi_process()->get_user_data();
120 }
121
122 void smpi_process_set_user_data(void *data){
123   return smpi_process()->set_user_data(data);
124 }
125
126
127 int smpi_global_size()
128 {
129   char *value = getenv("SMPI_GLOBAL_SIZE");
130   xbt_assert(value,"Please set env var SMPI_GLOBAL_SIZE to the expected number of processes.");
131
132   return xbt_str_parse_int(value, "SMPI_GLOBAL_SIZE contains a non-numerical value: %s");
133 }
134
135 void smpi_comm_set_copy_data_callback(void (*callback) (smx_activity_t, void*, size_t))
136 {
137   smpi_comm_copy_data_callback = callback;
138 }
139
140 static void print(std::vector<std::pair<size_t, size_t>> vec) {
141   std::fprintf(stderr, "{");
142   for (auto const& elt : vec) {
143     std::fprintf(stderr, "(0x%zx, 0x%zx),", elt.first, elt.second);
144   }
145   std::fprintf(stderr, "}\n");
146 }
147 static void memcpy_private(void* dest, const void* src, std::vector<std::pair<size_t, size_t>>& private_blocks)
148 {
149   for (auto const& block : private_blocks)
150     memcpy((uint8_t*)dest+block.first, (uint8_t*)src+block.first, block.second-block.first);
151 }
152
153 static void check_blocks(std::vector<std::pair<size_t, size_t>> &private_blocks, size_t buff_size) {
154   for (auto const& block : private_blocks)
155     xbt_assert(block.first <= block.second && block.second <= buff_size, "Oops, bug in shared malloc.");
156 }
157
158 void smpi_comm_copy_buffer_callback(smx_activity_t synchro, void *buff, size_t buff_size)
159 {
160   simgrid::kernel::activity::CommImplPtr comm =
161       boost::dynamic_pointer_cast<simgrid::kernel::activity::CommImpl>(synchro);
162   int src_shared                        = 0;
163   int dst_shared                        = 0;
164   size_t src_offset                     = 0;
165   size_t dst_offset                     = 0;
166   std::vector<std::pair<size_t, size_t>> src_private_blocks;
167   std::vector<std::pair<size_t, size_t>> dst_private_blocks;
168   XBT_DEBUG("Copy the data over");
169   if((src_shared=smpi_is_shared(buff, src_private_blocks, &src_offset))) {
170     XBT_DEBUG("Sender %p is shared. Let's ignore it.", buff);
171     src_private_blocks = shift_and_frame_private_blocks(src_private_blocks, src_offset, buff_size);
172   }
173   else {
174     src_private_blocks.clear();
175     src_private_blocks.push_back(std::make_pair(0, buff_size));
176   }
177   if((dst_shared=smpi_is_shared((char*)comm->dst_buff, dst_private_blocks, &dst_offset))) {
178     XBT_DEBUG("Receiver %p is shared. Let's ignore it.", (char*)comm->dst_buff);
179     dst_private_blocks = shift_and_frame_private_blocks(dst_private_blocks, dst_offset, buff_size);
180   }
181   else {
182     dst_private_blocks.clear();
183     dst_private_blocks.push_back(std::make_pair(0, buff_size));
184   }
185   check_blocks(src_private_blocks, buff_size);
186   check_blocks(dst_private_blocks, buff_size);
187   auto private_blocks = merge_private_blocks(src_private_blocks, dst_private_blocks);
188   check_blocks(private_blocks, buff_size);
189   void* tmpbuff=buff;
190   if ((smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP) && (static_cast<char*>(buff) >= smpi_data_exe_start) &&
191       (static_cast<char*>(buff) < smpi_data_exe_start + smpi_data_exe_size)) {
192     XBT_DEBUG("Privatization : We are copying from a zone inside global memory... Saving data to temp buffer !");
193
194     smpi_switch_data_segment(Actor::self()->getPid());
195     tmpbuff = static_cast<void*>(xbt_malloc(buff_size));
196     memcpy_private(tmpbuff, buff, private_blocks);
197   }
198
199   if ((smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP) && ((char*)comm->dst_buff >= smpi_data_exe_start) &&
200       ((char*)comm->dst_buff < smpi_data_exe_start + smpi_data_exe_size)) {
201     XBT_DEBUG("Privatization : We are copying to a zone inside global memory - Switch data segment");
202     smpi_switch_data_segment(Actor::self()->getPid());
203   }
204   XBT_DEBUG("Copying %zu bytes from %p to %p", buff_size, tmpbuff,comm->dst_buff);
205   memcpy_private(comm->dst_buff, tmpbuff, private_blocks);
206
207   if (comm->detached) {
208     // if this is a detached send, the source buffer was duplicated by SMPI
209     // sender to make the original buffer available to the application ASAP
210     xbt_free(buff);
211     //It seems that the request is used after the call there this should be free somewhere else but where???
212     //xbt_free(comm->comm.src_data);// inside SMPI the request is kept inside the user data and should be free
213     comm->src_buff = nullptr;
214   }
215   if (tmpbuff != buff)
216     xbt_free(tmpbuff);
217 }
218
219 void smpi_comm_null_copy_buffer_callback(smx_activity_t comm, void *buff, size_t buff_size)
220 {
221   /* nothing done in this version */
222 }
223
224 static void smpi_check_options(){
225   //check correctness of MPI parameters
226
227    xbt_assert(xbt_cfg_get_int("smpi/async-small-thresh") <= xbt_cfg_get_int("smpi/send-is-detached-thresh"));
228
229    if (xbt_cfg_is_default_value("smpi/host-speed")) {
230      XBT_INFO("You did not set the power of the host running the simulation.  "
231               "The timings will certainly not be accurate.  "
232               "Use the option \"--cfg=smpi/host-speed:<flops>\" to set its value."
233               "Check http://simgrid.org/simgrid/latest/doc/options.html#options_smpi_bench for more information.");
234    }
235
236    xbt_assert(xbt_cfg_get_double("smpi/cpu-threshold") >=0,
237        "The 'smpi/cpu-threshold' option cannot have negative values [anymore]. If you want to discard "
238        "the simulation of any computation, please use 'smpi/simulate-computation:no' instead.");
239 }
240
241 int smpi_enabled() {
242   return not process_data.empty();
243 }
244
245 void smpi_global_init()
246 {
247   if (not MC_is_active()) {
248     global_timer = xbt_os_timer_new();
249     xbt_os_walltimer_start(global_timer);
250   }
251
252   std::string filename = xbt_cfg_get_string("smpi/comp-adjustment-file");
253   if (not filename.empty()) {
254     std::ifstream fstream(filename);
255     if (not fstream.is_open()) {
256       xbt_die("Could not open file %s. Does it exist?", filename.c_str());
257     }
258
259     std::string line;
260     typedef boost::tokenizer< boost::escaped_list_separator<char>> Tokenizer;
261     std::getline(fstream, line); // Skip the header line
262     while (std::getline(fstream, line)) {
263       Tokenizer tok(line);
264       Tokenizer::iterator it  = tok.begin();
265       Tokenizer::iterator end = std::next(tok.begin());
266
267       std::string location = *it;
268       boost::trim(location);
269       location2speedup.insert(std::pair<std::string, double>(location, std::stod(*end)));
270     }
271   }
272
273 #if HAVE_PAPI
274   // This map holds for each computation unit (such as "default" or "process1" etc.)
275   // the configuration as given by the user (counter data as a pair of (counter_name, counter_counter))
276   // and the (computed) event_set.
277   std::map</* computation unit name */ std::string, papi_process_data> units2papi_setup;
278
279   if (not xbt_cfg_get_string("smpi/papi-events").empty()) {
280     if (PAPI_library_init(PAPI_VER_CURRENT) != PAPI_VER_CURRENT)
281       XBT_ERROR("Could not initialize PAPI library; is it correctly installed and linked?"
282                 " Expected version is %i",
283                 PAPI_VER_CURRENT);
284
285     typedef boost::tokenizer<boost::char_separator<char>> Tokenizer;
286     boost::char_separator<char> separator_units(";");
287     std::string str = xbt_cfg_get_string("smpi/papi-events");
288     Tokenizer tokens(str, separator_units);
289
290     // Iterate over all the computational units. This could be processes, hosts, threads, ranks... You name it.
291     // I'm not exactly sure what we will support eventually, so I'll leave it at the general term "units".
292     for (auto const& unit_it : tokens) {
293       boost::char_separator<char> separator_events(":");
294       Tokenizer event_tokens(unit_it, separator_events);
295
296       int event_set = PAPI_NULL;
297       if (PAPI_create_eventset(&event_set) != PAPI_OK) {
298         // TODO: Should this let the whole simulation die?
299         XBT_CRITICAL("Could not create PAPI event set during init.");
300       }
301
302       // NOTE: We cannot use a map here, as we must obey the order of the counters
303       // This is important for PAPI: We need to map the values of counters back
304       // to the event_names (so, when PAPI_read() has finished)!
305       papi_counter_t counters2values;
306
307       // Iterate over all counters that were specified for this specific
308       // unit.
309       // Note that we need to remove the name of the unit
310       // (that could also be the "default" value), which always comes first.
311       // Hence, we start at ++(events.begin())!
312       for (Tokenizer::iterator events_it = ++(event_tokens.begin()); events_it != event_tokens.end(); ++events_it) {
313
314         int event_code   = PAPI_NULL;
315         char* event_name = const_cast<char*>((*events_it).c_str());
316         if (PAPI_event_name_to_code(event_name, &event_code) == PAPI_OK) {
317           if (PAPI_add_event(event_set, event_code) != PAPI_OK) {
318             XBT_ERROR("Could not add PAPI event '%s'. Skipping.", event_name);
319             continue;
320           } else {
321             XBT_DEBUG("Successfully added PAPI event '%s' to the event set.", event_name);
322           }
323         } else {
324           XBT_CRITICAL("Could not find PAPI event '%s'. Skipping.", event_name);
325           continue;
326         }
327
328         counters2values.push_back(
329             // We cannot just pass *events_it, as this is of type const basic_string
330             std::make_pair<std::string, long long>(std::string(*events_it), 0));
331       }
332
333       std::string unit_name    = *(event_tokens.begin());
334       papi_process_data config = {.counter_data = std::move(counters2values), .event_set = event_set};
335
336       units2papi_setup.insert(std::make_pair(unit_name, std::move(config)));
337     }
338   }
339 #endif
340 }
341
342 void smpi_global_destroy()
343 {
344   smpi_bench_destroy();
345   smpi_shared_destroy();
346   smpi_deployment_cleanup_instances();
347
348   if (simgrid::smpi::Colls::smpi_coll_cleanup_callback != nullptr)
349     simgrid::smpi::Colls::smpi_coll_cleanup_callback();
350
351   MPI_COMM_WORLD = MPI_COMM_NULL;
352
353   if (not MC_is_active()) {
354     xbt_os_timer_free(global_timer);
355   }
356
357   if(smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP)
358     smpi_destroy_global_memory_segments();
359   smpi_free_static();
360 }
361
362 static void smpi_init_options(){
363   // return if already called
364   if (smpi_cpu_threshold > -1)
365     return;
366   simgrid::smpi::Colls::set_collectives();
367   simgrid::smpi::Colls::smpi_coll_cleanup_callback = nullptr;
368   smpi_cpu_threshold                               = xbt_cfg_get_double("smpi/cpu-threshold");
369   smpi_host_speed                                  = xbt_cfg_get_double("smpi/host-speed");
370   std::string smpi_privatize_option                = xbt_cfg_get_string("smpi/privatization");
371   if (smpi_privatize_option == "no" || smpi_privatize_option == "0")
372     smpi_privatize_global_variables = SMPI_PRIVATIZE_NONE;
373   else if (smpi_privatize_option == "yes" || smpi_privatize_option == "1")
374     smpi_privatize_global_variables = SMPI_PRIVATIZE_DEFAULT;
375   else if (smpi_privatize_option == "mmap")
376     smpi_privatize_global_variables = SMPI_PRIVATIZE_MMAP;
377   else if (smpi_privatize_option == "dlopen")
378     smpi_privatize_global_variables = SMPI_PRIVATIZE_DLOPEN;
379   else
380     xbt_die("Invalid value for smpi/privatization: '%s'", smpi_privatize_option.c_str());
381
382 #if defined(__FreeBSD__)
383     if (smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP) {
384       XBT_INFO("Mixing mmap privatization is broken on FreeBSD, switching to dlopen privatization instead.");
385       smpi_privatize_global_variables = SMPI_PRIVATIZE_DLOPEN;
386     }
387 #endif
388
389     if (smpi_cpu_threshold < 0)
390       smpi_cpu_threshold = DBL_MAX;
391
392     std::string val = xbt_cfg_get_string("smpi/shared-malloc");
393     if ((val == "yes") || (val == "1") || (val == "on") || (val == "global")) {
394       smpi_cfg_shared_malloc = shmalloc_global;
395     } else if (val == "local") {
396       smpi_cfg_shared_malloc = shmalloc_local;
397     } else if ((val == "no") || (val == "0") || (val == "off")) {
398       smpi_cfg_shared_malloc = shmalloc_none;
399     } else {
400       xbt_die("Invalid value '%s' for option smpi/shared-malloc. Possible values: 'on' or 'global', 'local', 'off'",
401               val.c_str());
402     }
403 }
404
405 typedef std::function<int(int argc, char *argv[])> smpi_entry_point_type;
406 typedef int (* smpi_c_entry_point_type)(int argc, char **argv);
407 typedef void (*smpi_fortran_entry_point_type)();
408
409 static int smpi_run_entry_point(smpi_entry_point_type entry_point, std::vector<std::string> args)
410 {
411   char noarg[]   = {'\0'};
412   const int argc = args.size();
413   std::unique_ptr<char*[]> argv(new char*[argc + 1]);
414   for (int i = 0; i != argc; ++i)
415     argv[i] = args[i].empty() ? noarg : &args[i].front();
416   argv[argc] = nullptr;
417
418   int res = entry_point(argc, argv.get());
419   if (res != 0){
420     XBT_WARN("SMPI process did not return 0. Return value : %d", res);
421     smpi_process()->set_return_value(res);
422   }
423   return 0;
424 }
425
426 // TODO, remove the number of functions involved here
427 static smpi_entry_point_type smpi_resolve_function(void* handle)
428 {
429   smpi_fortran_entry_point_type entry_point_fortran = (smpi_fortran_entry_point_type)dlsym(handle, "user_main_");
430   if (entry_point_fortran != nullptr) {
431     return [entry_point_fortran](int argc, char** argv) {
432       smpi_process_init(&argc, &argv);
433       entry_point_fortran();
434       return 0;
435     };
436   }
437
438   smpi_c_entry_point_type entry_point = (smpi_c_entry_point_type)dlsym(handle, "main");
439   if (entry_point != nullptr) {
440     return entry_point;
441   }
442
443   return smpi_entry_point_type();
444 }
445
446 int smpi_main(const char* executable, int argc, char *argv[])
447 {
448   srand(SMPI_RAND_SEED);
449
450   if (getenv("SMPI_PRETEND_CC") != nullptr) {
451     /* Hack to ensure that smpicc can pretend to be a simple compiler. Particularly handy to pass it to the
452      * configuration tools */
453     return 0;
454   }
455
456   TRACE_global_init();
457
458   SIMIX_global_init(&argc, argv);
459   MSG_init(&argc,argv);
460
461   SMPI_switch_data_segment = &smpi_switch_data_segment;
462
463   // TODO This will not be executed in the case where smpi_main is not called,
464   // e.g., not for smpi_msg_masterslave. This should be moved to another location
465   // that is always called -- maybe close to Actor::onCreation?
466   simgrid::s4u::Host::onCreation.connect([](simgrid::s4u::Host& host) {
467     host.extension_set(new simgrid::smpi::SmpiHost(&host));
468   });
469
470   // parse the platform file: get the host list
471   SIMIX_create_environment(argv[1]);
472   SIMIX_comm_set_copy_data_callback(smpi_comm_copy_buffer_callback);
473
474   smpi_init_options();
475   if (smpi_privatize_global_variables == SMPI_PRIVATIZE_DLOPEN) {
476
477     std::string executable_copy = executable;
478
479     // Prepare the copy of the binary (get its size)
480     struct stat fdin_stat;
481     stat(executable_copy.c_str(), &fdin_stat);
482     off_t fdin_size = fdin_stat.st_size;
483     static std::size_t rank = 0;
484
485     simix_global->default_function = [executable_copy, fdin_size](std::vector<std::string> args) {
486       return std::function<void()>([executable_copy, fdin_size, args] {
487
488         // Copy the dynamic library:
489         std::string target_executable = executable_copy
490           + "_" + std::to_string(getpid())
491           + "_" + std::to_string(rank++) + ".so";
492
493         int fdin = open(executable_copy.c_str(), O_RDONLY);
494         xbt_assert(fdin >= 0, "Cannot read from %s", executable_copy.c_str());
495         int fdout = open(target_executable.c_str(), O_CREAT | O_RDWR, S_IRWXU);
496         xbt_assert(fdout >= 0, "Cannot write into %s", target_executable.c_str());
497
498 #if HAVE_SENDFILE
499         ssize_t sent_size = sendfile(fdout, fdin, NULL, fdin_size);
500         xbt_assert(sent_size == fdin_size,
501                    "Error while copying %s: only %zd bytes copied instead of %ld (errno: %d -- %s)",
502                    target_executable.c_str(), sent_size, fdin_size, errno, strerror(errno));
503 #else
504         XBT_VERB("Copy %d bytes into %s", static_cast<int>(fdin_size), target_executable.c_str());
505         const int bufsize = 1024 * 1024 * 4;
506         char buf[bufsize];
507         while (int got = read(fdin, buf, bufsize)) {
508           if (got == -1) {
509             xbt_assert(errno == EINTR, "Cannot read from %s", executable_copy.c_str());
510           } else {
511             char* p  = buf;
512             int todo = got;
513             while (int done = write(fdout, p, todo)) {
514               if (done == -1) {
515                 xbt_assert(errno == EINTR, "Cannot write into %s", target_executable.c_str());
516               } else {
517                 p += done;
518                 todo -= done;
519               }
520             }
521           }
522         }
523 #endif
524         close(fdin);
525         close(fdout);
526
527         // Load the copy and resolve the entry point:
528         void* handle = dlopen(target_executable.c_str(), RTLD_LAZY | RTLD_LOCAL | RTLD_DEEPBIND);
529         int saved_errno = errno;
530         if (xbt_cfg_get_boolean("smpi/keep-temps") == false)
531           unlink(target_executable.c_str());
532         if (handle == nullptr)
533           xbt_die("dlopen failed: %s (errno: %d -- %s)", dlerror(), saved_errno, strerror(saved_errno));
534         smpi_entry_point_type entry_point = smpi_resolve_function(handle);
535         if (not entry_point)
536           xbt_die("Could not resolve entry point");
537
538         smpi_run_entry_point(entry_point, args);
539       });
540     };
541
542   }
543   else {
544
545     // Load the dynamic library and resolve the entry point:
546     void* handle = dlopen(executable, RTLD_LAZY | RTLD_LOCAL | RTLD_DEEPBIND);
547     if (handle == nullptr)
548       xbt_die("dlopen failed for %s: %s (errno: %d -- %s)", executable, dlerror(), errno, strerror(errno));
549     smpi_entry_point_type entry_point = smpi_resolve_function(handle);
550     if (not entry_point)
551       xbt_die("main not found in %s", executable);
552     // TODO, register the executable for SMPI privatization
553
554     // Execute the same entry point for each simulated process:
555     simix_global->default_function = [entry_point](std::vector<std::string> args) {
556       return std::function<void()>([entry_point, args] {
557         smpi_run_entry_point(entry_point, args);
558       });
559     };
560
561   }
562
563   SMPI_init();
564   SIMIX_launch_application(argv[2]);
565   SMPI_app_instance_register(smpi_default_instance_name, nullptr,
566                                SIMIX_process_count()); // This call has a side effect on process_count...
567   MPI_COMM_WORLD = *smpi_deployment_comm_world(smpi_default_instance_name);
568   smpi_universe_size = process_count;
569
570
571   /* Clean IO before the run */
572   fflush(stdout);
573   fflush(stderr);
574
575   if (MC_is_active()) {
576     MC_run();
577   } else {
578
579     SIMIX_run();
580
581     xbt_os_walltimer_stop(global_timer);
582     if (xbt_cfg_get_boolean("smpi/display-timing")){
583       double global_time = xbt_os_timer_elapsed(global_timer);
584       XBT_INFO("Simulated time: %g seconds. \n\n"
585           "The simulation took %g seconds (after parsing and platform setup)\n"
586           "%g seconds were actual computation of the application",
587           SIMIX_get_clock(), global_time , smpi_total_benched_time);
588
589       if (smpi_total_benched_time/global_time>=0.75)
590       XBT_INFO("More than 75%% of the time was spent inside the application code.\n"
591       "You may want to use sampling functions or trace replay to reduce this.");
592     }
593   }
594   int ret   = 0;
595   for (auto& pair : process_data) {
596     auto& smpi_process = pair.second;
597     if (smpi_process->return_value() != 0) {
598       ret = smpi_process->return_value(); // return first non 0 value
599       break;
600     }
601   }
602   smpi_global_destroy();
603
604   TRACE_end();
605
606   return ret;
607 }
608
609 // Called either directly from the user code, or from the code called by smpirun
610 void SMPI_init(){
611   simgrid::s4u::Actor::onCreation.connect([](simgrid::s4u::ActorPtr actor) {
612     process_data.insert({actor, new simgrid::smpi::Process(actor, nullptr)});
613   });
614   simgrid::s4u::Actor::onDestruction.connect([](simgrid::s4u::ActorPtr actor) {
615     if (process_data.find(actor) != process_data.end()) {
616       delete process_data.at(actor);
617       process_data.erase(actor);
618     }
619   });
620
621   smpi_init_options();
622   smpi_global_init();
623   smpi_check_options();
624   TRACE_smpi_alloc();
625   simgrid::surf::surfExitCallbacks.connect(TRACE_smpi_release);
626   if(smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP)
627     smpi_backup_global_memory_segment();
628 }
629
630 void SMPI_finalize(){
631   smpi_global_destroy();
632 }
633
634 void smpi_mpi_init() {
635   if(smpi_init_sleep > 0)
636     simcall_process_sleep(smpi_init_sleep);
637 }
638
639 double smpi_mpi_wtime(){
640   double time;
641   if (smpi_process()->initialized() != 0 && smpi_process()->finalized() == 0 && smpi_process()->sampling() == 0) {
642     smpi_bench_end();
643     time = SIMIX_get_clock();
644     // to avoid deadlocks if used as a break condition, such as
645     //     while (MPI_Wtime(...) < time_limit) {
646     //       ....
647     //     }
648     // because the time will not normally advance when only calls to MPI_Wtime
649     // are made -> deadlock (MPI_Wtime never reaches the time limit)
650     if(smpi_wtime_sleep > 0)
651       simcall_process_sleep(smpi_wtime_sleep);
652     smpi_bench_begin();
653   } else {
654     time = SIMIX_get_clock();
655   }
656   return time;
657 }
658