X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f3b7e5f4b4d7c87ee3e8827313ec966ea8fc8387..fb5dcd3589886a5f3845bbdd77fab5edbb82a842:/src/smpi/internals/smpi_bench.cpp diff --git a/src/smpi/internals/smpi_bench.cpp b/src/smpi/internals/smpi_bench.cpp index c5bd2a073f..277da718d0 100644 --- a/src/smpi/internals/smpi_bench.cpp +++ b/src/smpi/internals/smpi_bench.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2021. 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. */ @@ -9,6 +9,7 @@ #include "simgrid/modelchecker.h" #include "simgrid/s4u/Exec.hpp" #include "smpi_comm.hpp" +#include "smpi_utils.hpp" #include "src/internal_config.h" #include "src/mc/mc_replay.hpp" #include "xbt/config.hpp" @@ -20,6 +21,7 @@ #ifndef WIN32 #include #endif +#include #include #if HAVE_PAPI @@ -33,8 +35,6 @@ static simgrid::config::Flag "Minimum time to inject inside a call to MPI_Wtime(), gettimeofday() and clock_gettime()", 1e-8 /* Documented to be 10 ns */); -double smpi_total_benched_time = 0; - // Private execute_flops used by smpi_execute and smpi_execute_benched void private_execute_flops(double flops) { xbt_assert(flops >= 0, "You're trying to execute a negative amount of flops (%f)!", flops); @@ -66,7 +66,7 @@ void smpi_execute(double duration) void smpi_execute_benched(double duration) { smpi_bench_end(); - double speed = sg_host_speed(sg_host_self()); + double speed = sg_host_get_speed(sg_host_self()); smpi_execute_flops(duration*speed); smpi_bench_begin(); } @@ -90,11 +90,9 @@ void smpi_bench_begin() if (not smpi_cfg_papi_events_file().empty()) { int event_set = smpi_process()->papi_event_set(); // PAPI_start sets everything to 0! See man(3) PAPI_start - if (PAPI_LOW_LEVEL_INITED == PAPI_is_initialized() && PAPI_start(event_set) != PAPI_OK) { - // TODO This needs some proper handling. - XBT_CRITICAL("Could not start PAPI counters.\n"); - xbt_die("Error."); - } + if (PAPI_LOW_LEVEL_INITED == PAPI_is_initialized() && event_set) + xbt_assert(PAPI_start(event_set) == PAPI_OK, + "Could not start PAPI counters (TODO: this needs some proper handling)."); } #endif xbt_os_threadtimer_start(smpi_process()->timer()); @@ -131,14 +129,10 @@ void smpi_bench_end() int event_set = smpi_process()->papi_event_set(); std::vector event_values(counter_data.size()); - if (PAPI_stop(event_set, &event_values[0]) != PAPI_OK) { // Error - XBT_CRITICAL("Could not stop PAPI counters.\n"); - xbt_die("Error."); - } else { - for (unsigned int i = 0; i < counter_data.size(); i++) { - counter_data[i].second += event_values[i]; - } - } + if (event_set) + xbt_assert(PAPI_stop(event_set, &event_values[0]) == PAPI_OK, "Could not stop PAPI counters."); + for (unsigned int i = 0; i < counter_data.size(); i++) + counter_data[i].second += event_values[i]; } #endif @@ -157,18 +151,17 @@ void smpi_bench_end() #if HAVE_PAPI if (not smpi_cfg_papi_events_file().empty() && TRACE_smpi_is_enabled()) { - const simgrid::instr::Container* container = + simgrid::instr::Container* container = simgrid::instr::Container::by_name(std::string("rank-") + std::to_string(simgrid::s4u::this_actor::get_pid())); const papi_counter_t& counter_data = smpi_process()->papi_counters(); for (auto const& pair : counter_data) { - auto* variable = static_cast(container->type_->by_name(pair.first)); - variable->set_event(SIMIX_get_clock(), pair.second); + container->get_variable(pair.first)->set_event(SIMIX_get_clock(), pair.second); } } #endif - smpi_total_benched_time += xbt_os_timer_elapsed(timer); + simgrid::smpi::utils::add_benched_time(xbt_os_timer_elapsed(timer)); } /* Private sleep function used by smpi_sleep(), smpi_usleep() and friends */ @@ -177,12 +170,12 @@ static unsigned int private_sleep(double secs) smpi_bench_end(); XBT_DEBUG("Sleep for: %lf secs", secs); - int rank = simgrid::s4u::this_actor::get_pid(); - TRACE_smpi_sleeping_in(rank, secs); + aid_t pid = simgrid::s4u::this_actor::get_pid(); + TRACE_smpi_sleeping_in(pid, secs); simgrid::s4u::this_actor::sleep_for(secs); - TRACE_smpi_sleeping_out(rank); + TRACE_smpi_sleeping_out(pid); smpi_bench_begin(); return 0; @@ -213,7 +206,7 @@ int smpi_nanosleep(const struct timespec* tp, struct timespec* t) int smpi_gettimeofday(struct timeval* tv, struct timezone* tz) { - if (not smpi_process()) + if (not smpi_process()->initialized() || smpi_process()->finalized() || smpi_process()->sampling()) return gettimeofday(tv, tz); smpi_bench_end(); @@ -235,15 +228,17 @@ int smpi_gettimeofday(struct timeval* tv, struct timezone* tz) #if _POSIX_TIMERS > 0 int smpi_clock_gettime(clockid_t clk_id, struct timespec* tp) { - if (not smpi_process()) + if (not tp) { + errno = EFAULT; + return -1; + } + if (not smpi_process()->initialized() || smpi_process()->finalized() || smpi_process()->sampling()) return clock_gettime(clk_id, tp); //there is only one time in SMPI, so clk_id is ignored. smpi_bench_end(); double now = SIMIX_get_clock(); - if (tp) { - tp->tv_sec = static_cast(now); - tp->tv_nsec = static_cast((now - tp->tv_sec) * 1e9); - } + tp->tv_sec = static_cast(now); + tp->tv_nsec = static_cast((now - tp->tv_sec) * 1e9); if (smpi_wtime_sleep > 0) simgrid::s4u::this_actor::sleep_for(smpi_wtime_sleep); smpi_bench_begin(); @@ -369,8 +364,8 @@ int smpi_sample_2(int global, const char *file, int line, int iter_count) XBT_DEBUG("sample2 %s %d", loc.c_str(), iter_count); auto sample = samples.find(loc); - if (sample == samples.end()) - xbt_die("Y U NO use SMPI_SAMPLE_* macros? Stop messing directly with smpi_sample_* functions!"); + xbt_assert(sample != samples.end(), + "Y U NO use SMPI_SAMPLE_* macros? Stop messing directly with smpi_sample_* functions!"); const LocalData& data = sample->second; if (data.benching) { @@ -405,8 +400,8 @@ void smpi_sample_3(int global, const char *file, int line) XBT_DEBUG("sample3 %s", loc.c_str()); auto sample = samples.find(loc); - if (sample == samples.end()) - xbt_die("Y U NO use SMPI_SAMPLE_* macros? Stop messing directly with smpi_sample_* functions!"); + xbt_assert(sample != samples.end(), + "Y U NO use SMPI_SAMPLE_* macros? Stop messing directly with smpi_sample_* functions!"); LocalData& data = sample->second; if (not data.benching) @@ -437,9 +432,9 @@ int smpi_sample_exit(int global, const char *file, int line, int iter_count){ XBT_DEBUG("sample exit %s", loc.c_str()); auto sample = samples.find(loc); - if (sample == samples.end()) - xbt_die("Y U NO use SMPI_SAMPLE_* macros? Stop messing directly with smpi_sample_* functions!"); - + xbt_assert(sample != samples.end(), + "Y U NO use SMPI_SAMPLE_* macros? Stop messing directly with smpi_sample_* functions!"); + if (smpi_process()->sampling()){//end of loop, but still sampling needed const LocalData& data = sample->second; smpi_process()->set_sampling(0);