Logo AND Algorithmique Numérique Distribuée

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