X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9e3b2f1d55a07271c05db2ed5b3fec27561097f9..5c9583c94b9cef3f02ffec69b6cc245b1739f97e:/src/smpi/internals/smpi_deployment.cpp diff --git a/src/smpi/internals/smpi_deployment.cpp b/src/smpi/internals/smpi_deployment.cpp index 3cc6249ca3..828c52bea3 100644 --- a/src/smpi/internals/smpi_deployment.cpp +++ b/src/smpi/internals/smpi_deployment.cpp @@ -14,15 +14,25 @@ namespace simgrid { namespace smpi { namespace app { +static int universe_size = 0; + class Instance { public: - Instance(std::string name, int max_no_processes, MPI_Comm comm, simgrid::s4u::Barrier* finalization_barrier) - : name(std::move(name)) + Instance(const std::string& name, int max_no_processes, MPI_Comm comm, simgrid::s4u::Barrier* finalization_barrier) + : name(name) , size(max_no_processes) , present_processes(0) , comm_world(comm) , finalization_barrier(finalization_barrier) - { } + { + MPI_Group group = new simgrid::smpi::Group(size); + comm_world = new simgrid::smpi::Comm(group, nullptr, 0, -1); + // FIXME : using MPI_Attr_put with MPI_UNIVERSE_SIZE is forbidden and we make it a no-op (which triggers a warning + // as MPI_ERR_ARG is returned). Directly calling Comm::attr_put breaks for now, as MPI_UNIVERSE_SIZE,is <0 + // instance.comm_world->attr_put(MPI_UNIVERSE_SIZE, reinterpret_cast(instance.size)); + + universe_size += max_no_processes; + } const std::string name; int size; @@ -37,7 +47,6 @@ public: using simgrid::smpi::app::Instance; static std::map smpi_instances; -extern int process_count; // How many processes have been allocated over all instances? /** @ingroup smpi_simulation * @brief Registers a running instance of a MPI program. @@ -51,27 +60,17 @@ extern int process_count; // How many processes have been allocated over all ins */ void SMPI_app_instance_register(const char *name, xbt_main_func_t code, int num_processes) { - if (code != nullptr) { // When started with smpirun, we will not execute a function + if (code != nullptr) // When started with smpirun, we will not execute a function simgrid::s4u::Engine::get_instance()->register_function(name, code); - } - static int already_called = 0; + static bool already_called = false; if (not already_called) { - already_called = 1; - std::vector list = simgrid::s4u::Engine::get_instance()->get_all_hosts(); - for (auto const& host : list) { + already_called = true; + for (auto const& host : simgrid::s4u::Engine::get_instance()->get_all_hosts()) host->extension_set(new simgrid::smpi::Host(host)); - } } Instance instance(std::string(name), num_processes, MPI_COMM_NULL, new simgrid::s4u::Barrier(num_processes)); - MPI_Group group = new simgrid::smpi::Group(instance.size); - instance.comm_world = new simgrid::smpi::Comm(group, nullptr); -// FIXME : using MPI_Attr_put with MPI_UNIVERSE_SIZE is forbidden and we make it a no-op (which triggers a warning as MPI_ERR_ARG is returned). -// Directly calling Comm::attr_put breaks for now, as MPI_UNIVERSE_SIZE,is <0 -// instance.comm_world->attr_put(MPI_UNIVERSE_SIZE, reinterpret_cast(instance.size)); - - process_count+=num_processes; smpi_instances.insert(std::pair(name, instance)); } @@ -110,3 +109,8 @@ void smpi_deployment_cleanup_instances(){ } smpi_instances.clear(); } + +int smpi_get_universe_size() +{ + return simgrid::smpi::app::universe_size; +}