X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/91fe7904c884b2d0f5e7408d6e9d1d99886bd365..c6683b41cf9ecda70c1d4d75d1effc61903a894f:/src/smpi/bindings/smpi_pmpi.cpp diff --git a/src/smpi/bindings/smpi_pmpi.cpp b/src/smpi/bindings/smpi_pmpi.cpp index 8764f14f5a..93dca485d6 100644 --- a/src/smpi/bindings/smpi_pmpi.cpp +++ b/src/smpi/bindings/smpi_pmpi.cpp @@ -1,9 +1,10 @@ -/* Copyright (c) 2007-2022. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2023. 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 "private.hpp" +#include "simgrid/host.h" #include "simgrid/instr.h" #include "simgrid/s4u/Engine.hpp" #include "simgrid/s4u/Host.hpp" @@ -53,10 +54,11 @@ int PMPI_Init(int*, char***) simgrid::smpi::ActorExt::init(); TRACE_smpi_init(simgrid::s4u::this_actor::get_pid(), __func__); + smpi_mpi_init(); smpi_bench_begin(); smpi_process()->mark_as_initialized(); - smpi_mpi_init(); + CHECK_COLLECTIVE(smpi_process()->comm_world(), "MPI_Init") return MPI_SUCCESS; } @@ -64,10 +66,12 @@ int PMPI_Init(int*, char***) int PMPI_Finalize() { smpi_bench_end(); + CHECK_COLLECTIVE(smpi_process()->comm_world(), "MPI_Finalize") aid_t rank_traced = simgrid::s4u::this_actor::get_pid(); + smpi_process()->mark_as_finalizing(); TRACE_smpi_comm_in(rank_traced, __func__, new simgrid::instr::NoOpTIData("finalize")); - if(simgrid::config::get_value("smpi/finalization-barrier")) + if (simgrid::config::get_value("smpi/barrier-finalization")) simgrid::smpi::colls::barrier(MPI_COMM_WORLD); smpi_process()->finalize(); @@ -89,7 +93,7 @@ int PMPI_Get_version (int *version,int *subversion){ } int PMPI_Get_library_version (char *version,int *len){ - snprintf(version, MPI_MAX_LIBRARY_VERSION_STRING, "SMPI Version %d.%d. Copyright The SimGrid Team 2007-2022", + snprintf(version, MPI_MAX_LIBRARY_VERSION_STRING, "SMPI Version %d.%d. Copyright The SimGrid Team 2007-2023", SIMGRID_VERSION_MAJOR, SIMGRID_VERSION_MINOR); *len = std::min(static_cast(strlen(version)), MPI_MAX_LIBRARY_VERSION_STRING); return MPI_SUCCESS; @@ -132,9 +136,9 @@ int PMPI_Abort(MPI_Comm comm, int /*errorcode*/) smpi_bench_end(); CHECK_COMM(1) XBT_WARN("MPI_Abort was called, something went probably wrong in this simulation ! Killing all processes sharing the same MPI_COMM_WORLD"); - auto myself = simgrid::kernel::actor::ActorImpl::self(); + auto* myself = simgrid::kernel::actor::ActorImpl::self(); for (int i = 0; i < comm->size(); i++){ - auto actor = simgrid::kernel::EngineImpl::get_instance()->get_actor_by_pid(comm->group()->actor(i)); + auto* actor = simgrid::kernel::EngineImpl::get_instance()->get_actor_by_pid(comm->group()->actor(i)); if (actor != nullptr && actor != myself) simgrid::kernel::actor::simcall_answered([actor] { actor->exit(); }); } @@ -148,10 +152,10 @@ double PMPI_Wtime() return smpi_mpi_wtime(); } -extern double sg_maxmin_precision; +extern double sg_precision_timing; double PMPI_Wtick() { - return sg_maxmin_precision; + return sg_precision_timing; } int PMPI_Address(const void* location, MPI_Aint* address) @@ -184,7 +188,7 @@ MPI_Aint PMPI_Aint_diff(MPI_Aint address, MPI_Aint disp) int PMPI_Get_processor_name(char *name, int *resultlen) { int len = std::min(static_cast(sg_host_self()->get_name().size()), MPI_MAX_PROCESSOR_NAME - 1); - std::string(sg_host_self()->get_name()).copy(name, len); + sg_host_self()->get_name().copy(name, len); name[len] = '\0'; *resultlen = len; @@ -198,10 +202,9 @@ int PMPI_Get_count(const MPI_Status * status, MPI_Datatype datatype, int *count) } else if (not datatype->is_valid()) { return MPI_ERR_TYPE; } else { - size_t size = datatype->size(); - if (size == 0) { + if (datatype->size() == 0) { *count = 0; - } else if (status->count % size != 0) { + } else if (status->count % datatype->size() != 0) { *count = MPI_UNDEFINED; } else { *count = simgrid::smpi::Status::get_count(status, datatype);