X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/07fa4dbf48f51edfee6c6a56c11095b02e93bf5e..c266a136ccbfb134f27da5223d3a88eac34b9f4c:/src/smpi/internals/smpi_deployment.cpp diff --git a/src/smpi/internals/smpi_deployment.cpp b/src/smpi/internals/smpi_deployment.cpp index 7a75f15f26..72b798a9d2 100644 --- a/src/smpi/internals/smpi_deployment.cpp +++ b/src/smpi/internals/smpi_deployment.cpp @@ -1,12 +1,11 @@ -/* Copyright (c) 2004-2017. The SimGrid Team. +/* Copyright (c) 2004-2018. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include "SmpiHost.hpp" +#include "smpi_host.hpp" #include "private.hpp" -#include "simgrid/msg.h" /* barrier */ #include "simgrid/s4u/Engine.hpp" #include "smpi_comm.hpp" #include @@ -17,24 +16,20 @@ namespace app { class Instance { public: - Instance(const char* name, int max_no_processes, int process_count, MPI_Comm comm, msg_bar_t finalization_barrier) + Instance(const std::string name, int max_no_processes, int process_count, MPI_Comm comm, + simgrid::s4u::Barrier* finalization_barrier) : name(name) , size(max_no_processes) , present_processes(0) , comm_world(comm) , finalization_barrier(finalization_barrier) - { - int cur_process_count = smpi_process_count(); - for (int i = 0; i < max_no_processes; i++) { - smpi_add_process(cur_process_count + i); - } - } + { } - const char* name; + const std::string name; int size; int present_processes; MPI_Comm comm_world; - msg_bar_t finalization_barrier; + simgrid::s4u::Barrier* finalization_barrier; }; } } @@ -48,7 +43,6 @@ extern int process_count; // How many processes have been allocated over all ins /** \ingroup smpi_simulation * \brief Registers a running instance of a MPI program. * - * FIXME : remove MSG from the loop at some point. * \param name the reference name of the function. * \param code the main mpi function (must have a int ..(int argc, char *argv[])) prototype * \param num_processes the size of the instance we want to deploy @@ -62,35 +56,34 @@ void SMPI_app_instance_register(const char *name, xbt_main_func_t code, int num_ static int already_called = 0; if (not already_called) { already_called = 1; - std::vector list; - simgrid::s4u::Engine::getInstance()->getHostList(&list); + std::vector list = simgrid::s4u::Engine::get_instance()->get_all_hosts(); for (auto const& host : list) { - host->extension_set(new simgrid::smpi::SmpiHost(host)); + host->extension_set(new simgrid::smpi::Host(host)); } } - Instance instance(name, num_processes, process_count, MPI_COMM_NULL, MSG_barrier_init(num_processes)); + Instance instance(std::string(name), num_processes, process_count, 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); - MPI_Attr_put(instance.comm_world, MPI_UNIVERSE_SIZE, reinterpret_cast(instance.size)); +// 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)); } -void smpi_deployment_register_process(const char* instance_id, int rank, int index) +void smpi_deployment_register_process(const std::string instance_id, int rank, simgrid::s4u::ActorPtr actor) { - if (smpi_instances.empty()) // no instance registered, we probably used smpirun. - return; - Instance& instance = smpi_instances.at(instance_id); instance.present_processes++; - instance.comm_world->group()->set_mapping(index, rank); + instance.comm_world->group()->set_mapping(actor, rank); } -MPI_Comm* smpi_deployment_comm_world(const char* instance_id) +MPI_Comm* smpi_deployment_comm_world(const std::string instance_id) { if (smpi_instances.empty()) { // no instance registered, we probably used smpirun. return nullptr; @@ -99,7 +92,7 @@ MPI_Comm* smpi_deployment_comm_world(const char* instance_id) return &instance.comm_world; } -msg_bar_t smpi_deployment_finalization_barrier(const char* instance_id) +simgrid::s4u::Barrier* smpi_deployment_finalization_barrier(const std::string instance_id) { if (smpi_instances.empty()) { // no instance registered, we probably used smpirun. return nullptr; @@ -111,7 +104,7 @@ msg_bar_t smpi_deployment_finalization_barrier(const char* instance_id) void smpi_deployment_cleanup_instances(){ for (auto const& item : smpi_instances) { Instance instance = item.second; - MSG_barrier_destroy(instance.finalization_barrier); + delete instance.finalization_barrier; simgrid::smpi::Comm::destroy(instance.comm_world); } smpi_instances.clear();