Logo AND Algorithmique Numérique Distribuée

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