1 /* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved. */
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. */
7 #include "simgrid/s4u/Engine.hpp"
8 #include "simgrid/plugins/file_system.h"
9 #include "smpi_coll.hpp"
10 #include "smpi_f2c.hpp"
11 #include "smpi_host.hpp"
12 #include "src/kernel/activity/CommImpl.hpp"
13 #include "src/simix/smx_private.hpp"
14 #include "src/smpi/include/smpi_actor.hpp"
15 #include "xbt/config.hpp"
18 #include <boost/algorithm/string.hpp> /* trim_right / trim_left */
19 #include <boost/tokenizer.hpp>
20 #include <cfloat> /* DBL_MAX */
22 #include <cstdint> /* intmax_t */
29 #include <sys/sendfile.h>
36 #if not defined(__APPLE__) && not defined(__HAIKU__)
40 #if defined(__APPLE__)
41 # include <AvailabilityMacros.h>
42 # ifndef MAC_OS_X_VERSION_10_12
43 # define MAC_OS_X_VERSION_10_12 101200
45 constexpr bool HAVE_WORKING_MMAP = (MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_12);
46 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__sun) || defined(__HAIKU__)
47 constexpr bool HAVE_WORKING_MMAP = false;
49 constexpr bool HAVE_WORKING_MMAP = true;
52 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_kernel, smpi, "Logging specific to SMPI (kernel)");
55 extern "C" void for_rtl_init_ (int *, char **);
56 extern "C" void for_rtl_finish_ ();
58 extern "C" void __io_set_argc(int);
59 extern "C" void __io_set_argv(char **);
61 extern "C" void _gfortran_set_args(int, char **);
64 /* RTLD_DEEPBIND is a bad idea of GNU ld that obviously does not exist on other platforms
65 * See https://www.akkadia.org/drepper/dsohowto.pdf
66 * and https://lists.freebsd.org/pipermail/freebsd-current/2016-March/060284.html
68 #if !RTLD_DEEPBIND || HAVE_SANITIZER_ADDRESS || HAVE_SANITIZER_THREAD
69 #define WANT_RTLD_DEEPBIND 0
71 #define WANT_RTLD_DEEPBIND RTLD_DEEPBIND
75 std::string papi_default_config_name = "default";
76 std::map</* computation unit name */ std::string, papi_process_data> units2papi_setup;
79 std::unordered_map<std::string, double> location2speedup;
81 static std::map</*process_id*/ simgrid::s4u::Actor const*, simgrid::smpi::ActorExt*> process_data;
82 static int smpi_exit_status = 0;
83 extern double smpi_total_benched_time;
84 xbt_os_timer_t global_timer;
85 static std::vector<std::string> privatize_libs_paths;
87 * Setting MPI_COMM_WORLD to MPI_COMM_UNINITIALIZED (it's a variable)
88 * is important because the implementation of MPI_Comm checks
89 * "this == MPI_COMM_UNINITIALIZED"? If yes, it uses smpi_process()->comm_world()
91 * This is basically how we only have one global variable but all processes have
92 * different communicators (the one their SMPI instance uses).
94 * See smpi_comm.cpp and the functions therein for details.
96 MPI_Comm MPI_COMM_WORLD = MPI_COMM_UNINITIALIZED;
97 MPI_Errhandler *MPI_ERRORS_RETURN = nullptr;
98 MPI_Errhandler *MPI_ERRORS_ARE_FATAL = nullptr;
99 MPI_Errhandler *MPI_ERRHANDLER_NULL = nullptr;
100 // No instance gets manually created; check also the smpirun.in script as
101 // this default name is used there as well (when the <actor> tag is generated).
102 static const std::string smpi_default_instance_name("smpirun");
103 static simgrid::config::Flag<double> smpi_init_sleep(
104 "smpi/init", "Time to inject inside a call to MPI_Init", 0.0);
106 void (*smpi_comm_copy_data_callback)(simgrid::kernel::activity::CommImpl*, void*,
107 size_t) = &smpi_comm_copy_buffer_callback;
109 simgrid::smpi::ActorExt* smpi_process()
111 simgrid::s4u::ActorPtr me = simgrid::s4u::Actor::self();
113 if (me == nullptr) // This happens sometimes (eg, when linking against NS3 because it pulls openMPI...)
116 return process_data.at(me.get());
119 simgrid::smpi::ActorExt* smpi_process_remote(simgrid::s4u::ActorPtr actor)
121 return process_data.at(actor.get());
124 MPI_Comm smpi_process_comm_self(){
125 return smpi_process()->comm_self();
128 MPI_Info smpi_process_info_env(){
129 return smpi_process()->info_env();
132 void * smpi_process_get_user_data(){
133 return simgrid::s4u::Actor::self()->get_impl()->get_user_data();
136 void smpi_process_set_user_data(void *data){
137 simgrid::s4u::Actor::self()->get_impl()->set_user_data(data);
140 void smpi_comm_set_copy_data_callback(void (*callback) (smx_activity_t, void*, size_t))
142 static void (*saved_callback)(smx_activity_t, void*, size_t);
143 saved_callback = callback;
144 smpi_comm_copy_data_callback = [](simgrid::kernel::activity::CommImpl* comm, void* buff, size_t size) {
145 saved_callback(smx_activity_t(comm), buff, size);
149 static void memcpy_private(void* dest, const void* src, std::vector<std::pair<size_t, size_t>>& private_blocks)
151 for (auto const& block : private_blocks)
152 memcpy((uint8_t*)dest+block.first, (uint8_t*)src+block.first, block.second-block.first);
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.");
160 void smpi_comm_copy_buffer_callback(simgrid::kernel::activity::CommImpl* comm, void* buff, size_t buff_size)
162 size_t src_offset = 0;
163 size_t dst_offset = 0;
164 std::vector<std::pair<size_t, size_t>> src_private_blocks;
165 std::vector<std::pair<size_t, size_t>> dst_private_blocks;
166 XBT_DEBUG("Copy the data over");
167 if(smpi_is_shared(buff, src_private_blocks, &src_offset)) {
168 XBT_DEBUG("Sender %p is shared. Let's ignore it.", buff);
169 src_private_blocks = shift_and_frame_private_blocks(src_private_blocks, src_offset, buff_size);
172 src_private_blocks.clear();
173 src_private_blocks.push_back(std::make_pair(0, buff_size));
175 if (smpi_is_shared((char*)comm->dst_buff_, dst_private_blocks, &dst_offset)) {
176 XBT_DEBUG("Receiver %p is shared. Let's ignore it.", (char*)comm->dst_buff_);
177 dst_private_blocks = shift_and_frame_private_blocks(dst_private_blocks, dst_offset, buff_size);
180 dst_private_blocks.clear();
181 dst_private_blocks.push_back(std::make_pair(0, buff_size));
183 check_blocks(src_private_blocks, buff_size);
184 check_blocks(dst_private_blocks, buff_size);
185 auto private_blocks = merge_private_blocks(src_private_blocks, dst_private_blocks);
186 check_blocks(private_blocks, buff_size);
188 if ((smpi_privatize_global_variables == SmpiPrivStrategies::MMAP) &&
189 (static_cast<char*>(buff) >= smpi_data_exe_start) &&
190 (static_cast<char*>(buff) < smpi_data_exe_start + smpi_data_exe_size)) {
191 XBT_DEBUG("Privatization : We are copying from a zone inside global memory... Saving data to temp buffer !");
192 smpi_switch_data_segment(comm->src_actor_->iface());
193 tmpbuff = static_cast<void*>(xbt_malloc(buff_size));
194 memcpy_private(tmpbuff, buff, private_blocks);
197 if ((smpi_privatize_global_variables == SmpiPrivStrategies::MMAP) &&
198 ((char*)comm->dst_buff_ >= smpi_data_exe_start) &&
199 ((char*)comm->dst_buff_ < smpi_data_exe_start + smpi_data_exe_size)) {
200 XBT_DEBUG("Privatization : We are copying to a zone inside global memory - Switch data segment");
201 smpi_switch_data_segment(comm->dst_actor_->iface());
203 XBT_DEBUG("Copying %zu bytes from %p to %p", buff_size, tmpbuff, comm->dst_buff_);
204 memcpy_private(comm->dst_buff_, tmpbuff, private_blocks);
206 if (comm->detached()) {
207 // if this is a detached send, the source buffer was duplicated by SMPI
208 // sender to make the original buffer available to the application ASAP
210 //It seems that the request is used after the call there this should be free somewhere else but where???
211 //xbt_free(comm->comm.src_data);// inside SMPI the request is kept inside the user data and should be free
212 comm->src_buff_ = nullptr;
218 void smpi_comm_null_copy_buffer_callback(simgrid::kernel::activity::CommImpl*, void*, size_t)
220 /* nothing done in this version */
223 static void smpi_check_options()
225 //check correctness of MPI parameters
227 xbt_assert(simgrid::config::get_value<int>("smpi/async-small-thresh") <=
228 simgrid::config::get_value<int>("smpi/send-is-detached-thresh"));
230 if (simgrid::config::is_default("smpi/host-speed") && not MC_is_active()) {
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. "
235 "https://simgrid.org/doc/latest/Configuring_SimGrid.html#automatic-benchmarking-of-smpi-code for more "
239 xbt_assert(simgrid::config::get_value<double>("smpi/cpu-threshold") >= 0,
240 "The 'smpi/cpu-threshold' option cannot have negative values [anymore]. If you want to discard "
241 "the simulation of any computation, please use 'smpi/simulate-computation:no' instead.");
245 return MPI_COMM_WORLD != MPI_COMM_UNINITIALIZED;
248 static void smpi_init_papi()
251 // This map holds for each computation unit (such as "default" or "process1" etc.)
252 // the configuration as given by the user (counter data as a pair of (counter_name, counter_counter))
253 // and the (computed) event_set.
255 if (not simgrid::config::get_value<std::string>("smpi/papi-events").empty()) {
256 if (PAPI_library_init(PAPI_VER_CURRENT) != PAPI_VER_CURRENT)
257 XBT_ERROR("Could not initialize PAPI library; is it correctly installed and linked?"
258 " Expected version is %u", PAPI_VER_CURRENT);
260 typedef boost::tokenizer<boost::char_separator<char>> Tokenizer;
261 boost::char_separator<char> separator_units(";");
262 std::string str = simgrid::config::get_value<std::string>("smpi/papi-events");
263 Tokenizer tokens(str, separator_units);
265 // Iterate over all the computational units. This could be processes, hosts, threads, ranks... You name it.
266 // I'm not exactly sure what we will support eventually, so I'll leave it at the general term "units".
267 for (auto const& unit_it : tokens) {
268 boost::char_separator<char> separator_events(":");
269 Tokenizer event_tokens(unit_it, separator_events);
271 int event_set = PAPI_NULL;
272 if (PAPI_create_eventset(&event_set) != PAPI_OK) {
273 // TODO: Should this let the whole simulation die?
274 XBT_CRITICAL("Could not create PAPI event set during init.");
277 // NOTE: We cannot use a map here, as we must obey the order of the counters
278 // This is important for PAPI: We need to map the values of counters back
279 // to the event_names (so, when PAPI_read() has finished)!
280 papi_counter_t counters2values;
282 // Iterate over all counters that were specified for this specific
284 // Note that we need to remove the name of the unit
285 // (that could also be the "default" value), which always comes first.
286 // Hence, we start at ++(events.begin())!
287 for (Tokenizer::iterator events_it = ++(event_tokens.begin()); events_it != event_tokens.end(); ++events_it) {
289 int event_code = PAPI_NULL;
290 char* event_name = const_cast<char*>((*events_it).c_str());
291 if (PAPI_event_name_to_code(event_name, &event_code) != PAPI_OK) {
292 XBT_CRITICAL("Could not find PAPI event '%s'. Skipping.", event_name);
295 if (PAPI_add_event(event_set, event_code) != PAPI_OK) {
296 XBT_ERROR("Could not add PAPI event '%s'. Skipping.", event_name);
299 XBT_DEBUG("Successfully added PAPI event '%s' to the event set.", event_name);
301 counters2values.push_back(
302 // We cannot just pass *events_it, as this is of type const basic_string
303 std::make_pair<std::string, long long>(std::string(*events_it), 0));
306 std::string unit_name = *(event_tokens.begin());
307 papi_process_data config = {.counter_data = std::move(counters2values), .event_set = event_set};
309 units2papi_setup.insert(std::make_pair(unit_name, std::move(config)));
315 static void smpi_init_options(){
316 // return if already called
317 if (smpi_cpu_threshold > -1)
319 simgrid::smpi::Colls::set_collectives();
320 simgrid::smpi::Colls::smpi_coll_cleanup_callback = nullptr;
321 smpi_cpu_threshold = simgrid::config::get_value<double>("smpi/cpu-threshold");
322 if (smpi_cpu_threshold < 0)
323 smpi_cpu_threshold = DBL_MAX;
325 smpi_host_speed = simgrid::config::get_value<double>("smpi/host-speed");
326 std::string smpi_privatize_option = simgrid::config::get_value<std::string>("smpi/privatization");
327 if (smpi_privatize_option == "no" || smpi_privatize_option == "0")
328 smpi_privatize_global_variables = SmpiPrivStrategies::NONE;
329 else if (smpi_privatize_option == "yes" || smpi_privatize_option == "1")
330 smpi_privatize_global_variables = SmpiPrivStrategies::DEFAULT;
331 else if (smpi_privatize_option == "mmap")
332 smpi_privatize_global_variables = SmpiPrivStrategies::MMAP;
333 else if (smpi_privatize_option == "dlopen")
334 smpi_privatize_global_variables = SmpiPrivStrategies::DLOPEN;
336 xbt_die("Invalid value for smpi/privatization: '%s'", smpi_privatize_option.c_str());
338 if (not SMPI_switch_data_segment) {
339 XBT_DEBUG("Running without smpi_main(); disable smpi/privatization.");
340 smpi_privatize_global_variables = SmpiPrivStrategies::NONE;
342 if (not HAVE_WORKING_MMAP && smpi_privatize_global_variables == SmpiPrivStrategies::MMAP) {
343 XBT_INFO("mmap privatization is broken on this platform, switching to dlopen privatization instead.");
344 smpi_privatize_global_variables = SmpiPrivStrategies::DLOPEN;
347 std::string val = simgrid::config::get_value<std::string>("smpi/shared-malloc");
348 if ((val == "yes") || (val == "1") || (val == "on") || (val == "global")) {
349 smpi_cfg_shared_malloc = SharedMallocType::GLOBAL;
350 } else if (val == "local") {
351 smpi_cfg_shared_malloc = SharedMallocType::LOCAL;
352 } else if ((val == "no") || (val == "0") || (val == "off")) {
353 smpi_cfg_shared_malloc = SharedMallocType::NONE;
355 xbt_die("Invalid value '%s' for option smpi/shared-malloc. Possible values: 'on' or 'global', 'local', 'off'",
360 typedef std::function<int(int argc, char *argv[])> smpi_entry_point_type;
361 typedef int (* smpi_c_entry_point_type)(int argc, char **argv);
362 typedef void (*smpi_fortran_entry_point_type)();
364 template <typename F>
365 static int smpi_run_entry_point(const F& entry_point, const std::string& executable_path, std::vector<std::string> args)
367 // copy C strings, we need them writable
368 std::vector<char*>* args4argv = new std::vector<char*>(args.size());
369 std::transform(begin(args), end(args), begin(*args4argv), [](const std::string& s) { return xbt_strdup(s.c_str()); });
371 // set argv[0] to executable_path
372 xbt_free((*args4argv)[0]);
373 (*args4argv)[0] = xbt_strdup(executable_path.c_str());
376 // take a copy of args4argv to keep reference of the allocated strings
377 const std::vector<char*> args2str(*args4argv);
379 int argc = args4argv->size();
380 args4argv->push_back(nullptr);
381 char** argv = args4argv->data();
384 for_rtl_init_ (&argc, argv);
389 _gfortran_set_args(argc, argv);
391 int res = entry_point(argc, argv);
396 for (char* s : args2str)
402 XBT_WARN("SMPI process did not return 0. Return value : %d", res);
403 if (smpi_exit_status == 0)
404 smpi_exit_status = res;
410 // TODO, remove the number of functions involved here
411 static smpi_entry_point_type smpi_resolve_function(void* handle)
413 smpi_fortran_entry_point_type entry_point_fortran = (smpi_fortran_entry_point_type)dlsym(handle, "user_main_");
414 if (entry_point_fortran != nullptr) {
415 return [entry_point_fortran](int, char**) {
416 entry_point_fortran();
421 smpi_c_entry_point_type entry_point = (smpi_c_entry_point_type)dlsym(handle, "main");
422 if (entry_point != nullptr) {
426 return smpi_entry_point_type();
429 static void smpi_copy_file(const std::string& src, const std::string& target, off_t fdin_size)
431 int fdin = open(src.c_str(), O_RDONLY);
432 xbt_assert(fdin >= 0, "Cannot read from %s. Please make sure that the file exists and is executable.", src.c_str());
433 int fdout = open(target.c_str(), O_CREAT | O_RDWR, S_IRWXU);
434 xbt_assert(fdout >= 0, "Cannot write into %s", target.c_str());
436 XBT_DEBUG("Copy %" PRIdMAX " bytes into %s", static_cast<intmax_t>(fdin_size), target.c_str());
438 ssize_t sent_size = sendfile(fdout, fdin, NULL, fdin_size);
439 if (sent_size == fdin_size) {
443 } else if (sent_size != -1 || errno != ENOSYS) {
444 xbt_die("Error while copying %s: only %zd bytes copied instead of %" PRIdMAX " (errno: %d -- %s)", target.c_str(),
445 sent_size, static_cast<intmax_t>(fdin_size), errno, strerror(errno));
448 // If this point is reached, sendfile() actually is not available. Copy file by hand.
449 const int bufsize = 1024 * 1024 * 4;
450 char* buf = new char[bufsize];
451 while (int got = read(fdin, buf, bufsize)) {
453 xbt_assert(errno == EINTR, "Cannot read from %s", src.c_str());
457 while (int done = write(fdout, p, todo)) {
459 xbt_assert(errno == EINTR, "Cannot write into %s", target.c_str());
472 #if not defined(__APPLE__) && not defined(__HAIKU__)
473 static int visit_libs(struct dl_phdr_info* info, size_t, void* data)
475 char* libname = (char*)(data);
476 const char *path = info->dlpi_name;
477 if(strstr(path, libname)){
478 strncpy(libname, path, 512);
486 static void smpi_init_privatization_dlopen(const std::string& executable)
488 // Prepare the copy of the binary (get its size)
489 struct stat fdin_stat;
490 stat(executable.c_str(), &fdin_stat);
491 off_t fdin_size = fdin_stat.st_size;
493 std::string libnames = simgrid::config::get_value<std::string>("smpi/privatize-libs");
494 if (not libnames.empty()) {
496 std::vector<std::string> privatize_libs;
497 boost::split(privatize_libs, libnames, boost::is_any_of(";"));
499 for (auto const& libname : privatize_libs) {
500 // load the library once to add it to the local libs, to get the absolute path
501 void* libhandle = dlopen(libname.c_str(), RTLD_LAZY);
502 // get library name from path
503 char fullpath[512] = {'\0'};
504 strncpy(fullpath, libname.c_str(), 511);
505 #if not defined(__APPLE__) && not defined(__HAIKU__)
506 xbt_assert(0 != dl_iterate_phdr(visit_libs, fullpath),
507 "Can't find a linked %s - check your settings in smpi/privatize-libs", fullpath);
508 XBT_DEBUG("Extra lib to privatize '%s' found", fullpath);
510 xbt_die("smpi/privatize-libs is not (yet) compatible with OSX nor with Haiku");
512 privatize_libs_paths.push_back(fullpath);
517 simix_global->default_function = [executable, fdin_size](std::vector<std::string> args) {
518 return std::function<void()>([executable, fdin_size, args] {
519 static std::size_t rank = 0;
520 // Copy the dynamic library:
521 std::string target_executable =
522 executable + "_" + std::to_string(getpid()) + "_" + std::to_string(rank) + ".so";
524 smpi_copy_file(executable, target_executable, fdin_size);
525 // if smpi/privatize-libs is set, duplicate pointed lib and link each executable copy to a different one.
526 std::vector<std::string> target_libs;
527 for (auto const& libpath : privatize_libs_paths) {
528 // if we were given a full path, strip it
529 size_t index = libpath.find_last_of("/\\");
531 if (index != std::string::npos)
532 libname = libpath.substr(index + 1);
534 if (not libname.empty()) {
535 // load the library to add it to the local libs, to get the absolute path
536 struct stat fdin_stat2;
537 stat(libpath.c_str(), &fdin_stat2);
538 off_t fdin_size2 = fdin_stat2.st_size;
540 // Copy the dynamic library, the new name must be the same length as the old one
541 // just replace the name with 7 digits for the rank and the rest of the name.
542 unsigned int pad = 7;
543 if (libname.length() < pad)
544 pad = libname.length();
545 std::string target_lib =
546 std::string(pad - std::to_string(rank).length(), '0') + std::to_string(rank) + libname.substr(pad);
547 target_libs.push_back(target_lib);
548 XBT_DEBUG("copy lib %s to %s, with size %lld", libpath.c_str(), target_lib.c_str(), (long long)fdin_size2);
549 smpi_copy_file(libpath, target_lib, fdin_size2);
551 std::string sedcommand = "sed -i -e 's/" + libname + "/" + target_lib + "/g' " + target_executable;
552 xbt_assert(system(sedcommand.c_str()) == 0, "error while applying sed command %s \n", sedcommand.c_str());
557 // Load the copy and resolve the entry point:
558 void* handle = dlopen(target_executable.c_str(), RTLD_LAZY | RTLD_LOCAL | WANT_RTLD_DEEPBIND);
559 int saved_errno = errno;
560 if (simgrid::config::get_value<bool>("smpi/keep-temps") == false) {
561 unlink(target_executable.c_str());
562 for (const std::string& target_lib : target_libs)
563 unlink(target_lib.c_str());
565 xbt_assert(handle != nullptr, "dlopen failed: %s (errno: %d -- %s)", dlerror(), saved_errno,
566 strerror(saved_errno));
568 smpi_entry_point_type entry_point = smpi_resolve_function(handle);
569 xbt_assert(entry_point, "Could not resolve entry point");
570 smpi_run_entry_point(entry_point, executable, args);
575 static void smpi_init_privatization_no_dlopen(const std::string& executable)
577 if (smpi_privatize_global_variables == SmpiPrivStrategies::MMAP)
578 smpi_prepare_global_memory_segment();
580 // Load the dynamic library and resolve the entry point:
581 void* handle = dlopen(executable.c_str(), RTLD_LAZY | RTLD_LOCAL);
582 xbt_assert(handle != nullptr, "dlopen failed for %s: %s (errno: %d -- %s)", executable.c_str(), dlerror(), errno,
584 smpi_entry_point_type entry_point = smpi_resolve_function(handle);
585 xbt_assert(entry_point, "main not found in %s", executable.c_str());
587 if (smpi_privatize_global_variables == SmpiPrivStrategies::MMAP)
588 smpi_backup_global_memory_segment();
590 // Execute the same entry point for each simulated process:
591 simix_global->default_function = [entry_point, executable](std::vector<std::string> args) {
592 return std::function<void()>(
593 [entry_point, executable, args] { smpi_run_entry_point(entry_point, executable, args); });
597 int smpi_main(const char* executable, int argc, char* argv[])
599 if (getenv("SMPI_PRETEND_CC") != nullptr) {
600 /* Hack to ensure that smpicc can pretend to be a simple compiler. Particularly handy to pass it to the
601 * configuration tools */
606 SIMIX_global_init(&argc, argv);
608 SMPI_switch_data_segment = &smpi_switch_data_segment;
609 sg_storage_file_system_init();
610 // parse the platform file: get the host list
611 simgrid::s4u::Engine::get_instance()->load_platform(argv[1]);
612 SIMIX_comm_set_copy_data_callback(smpi_comm_copy_buffer_callback);
615 if (smpi_privatize_global_variables == SmpiPrivStrategies::DLOPEN)
616 smpi_init_privatization_dlopen(executable);
618 smpi_init_privatization_no_dlopen(executable);
621 simgrid::s4u::Engine::get_instance()->load_deployment(argv[2]);
622 SMPI_app_instance_register(smpi_default_instance_name.c_str(), nullptr,
623 process_data.size()); // This call has a side effect on process_count...
624 MPI_COMM_WORLD = *smpi_deployment_comm_world(smpi_default_instance_name);
626 /* Clean IO before the run */
630 if (MC_is_active()) {
636 xbt_os_walltimer_stop(global_timer);
637 if (simgrid::config::get_value<bool>("smpi/display-timing")) {
638 double global_time = xbt_os_timer_elapsed(global_timer);
639 XBT_INFO("Simulated time: %g seconds. \n\n"
640 "The simulation took %g seconds (after parsing and platform setup)\n"
641 "%g seconds were actual computation of the application",
642 SIMIX_get_clock(), global_time , smpi_total_benched_time);
644 if (smpi_total_benched_time/global_time>=0.75)
645 XBT_INFO("More than 75%% of the time was spent inside the application code.\n"
646 "You may want to use sampling functions or trace replay to reduce this.");
651 return smpi_exit_status;
654 // Called either directly from the user code, or from the code called by smpirun
656 simgrid::s4u::Actor::on_creation.connect([](simgrid::s4u::Actor& actor) {
657 if (not actor.is_daemon()) {
658 process_data.insert({&actor, new simgrid::smpi::ActorExt(&actor)});
661 simgrid::s4u::Actor::on_destruction.connect([](simgrid::s4u::Actor const& actor) {
662 auto it = process_data.find(&actor);
663 if (it != process_data.end()) {
665 process_data.erase(it);
668 simgrid::s4u::Host::on_creation.connect(
669 [](simgrid::s4u::Host& host) { host.extension_set(new simgrid::smpi::Host(&host)); });
672 if (not MC_is_active()) {
673 global_timer = xbt_os_timer_new();
674 xbt_os_walltimer_start(global_timer);
677 std::string filename = simgrid::config::get_value<std::string>("smpi/comp-adjustment-file");
678 if (not filename.empty()) {
679 std::ifstream fstream(filename);
680 xbt_assert(fstream.is_open(), "Could not open file %s. Does it exist?", filename.c_str());
683 typedef boost::tokenizer<boost::escaped_list_separator<char>> Tokenizer;
684 std::getline(fstream, line); // Skip the header line
685 while (std::getline(fstream, line)) {
687 Tokenizer::iterator it = tok.begin();
688 Tokenizer::iterator end = std::next(tok.begin());
690 std::string location = *it;
691 boost::trim(location);
692 location2speedup.insert(std::pair<std::string, double>(location, std::stod(*end)));
696 smpi_check_options();
701 smpi_bench_destroy();
702 smpi_shared_destroy();
703 smpi_deployment_cleanup_instances();
705 if (simgrid::smpi::Colls::smpi_coll_cleanup_callback != nullptr)
706 simgrid::smpi::Colls::smpi_coll_cleanup_callback();
708 MPI_COMM_WORLD = MPI_COMM_NULL;
710 if (not MC_is_active()) {
711 xbt_os_timer_free(global_timer);
714 if (smpi_privatize_global_variables == SmpiPrivStrategies::MMAP)
715 smpi_destroy_global_memory_segments();
716 if (simgrid::smpi::F2C::lookup() != nullptr)
717 simgrid::smpi::F2C::delete_lookup();
720 void smpi_mpi_init() {
721 smpi_init_fortran_types();
722 if(smpi_init_sleep > 0)
723 simcall_process_sleep(smpi_init_sleep);