Logo AND Algorithmique Numérique Distribuée

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