Logo AND Algorithmique Numérique Distribuée

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