Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove useless calls
[simgrid.git] / src / smpi / internals / smpi_bench.cpp
1 /* Copyright (c) 2007, 2009-2017. The SimGrid Team. All rights reserved.    */
2
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. */
5
6 #include "private.hpp"
7 #include "simgrid/modelchecker.h"
8 #include "smpi_comm.hpp"
9 #include "smpi_process.hpp"
10 #include "src/internal_config.h"
11 #include "src/mc/mc_replay.hpp"
12 #include <unordered_map>
13
14 #ifndef WIN32
15 #include <sys/mman.h>
16 #endif
17 #include <cmath>
18
19 #if HAVE_PAPI
20 #include <papi.h>
21 #endif
22
23 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_bench, smpi, "Logging specific to SMPI (benchmarking)");
24
25 double smpi_cpu_threshold = -1;
26 double smpi_host_speed;
27
28 shared_malloc_type smpi_cfg_shared_malloc = shmalloc_global;
29 double smpi_total_benched_time = 0;
30
31 extern "C" XBT_PUBLIC(void) smpi_execute_flops_(double *flops);
32 void smpi_execute_flops_(double *flops)
33 {
34   smpi_execute_flops(*flops);
35 }
36
37 extern "C" XBT_PUBLIC(void) smpi_execute_(double *duration);
38 void smpi_execute_(double *duration)
39 {
40   smpi_execute(*duration);
41 }
42
43 void smpi_execute_flops(double flops) {
44   XBT_DEBUG("Handle real computation time: %f flops", flops);
45   smx_activity_t action = simcall_execution_start("computation", flops, 1, 0);
46   simcall_set_category (action, TRACE_internal_smpi_get_category());
47   simcall_execution_wait(action);
48   smpi_switch_data_segment(smpi_process()->index());
49 }
50
51 void smpi_execute(double duration)
52 {
53   if (duration >= smpi_cpu_threshold) {
54     XBT_DEBUG("Sleep for %g to handle real computation time", duration);
55     double flops = duration * smpi_host_speed;
56     int rank = smpi_process()->index();
57     instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
58     extra->type=TRACING_COMPUTING;
59     extra->comp_size=flops;
60     TRACE_smpi_computing_in(rank, extra);
61
62     smpi_execute_flops(flops);
63
64     TRACE_smpi_computing_out(rank);
65
66   } else {
67     XBT_DEBUG("Real computation took %g while option smpi/cpu-threshold is set to %g => ignore it", duration,
68               smpi_cpu_threshold);
69   }
70 }
71
72 void smpi_execute_benched(double duration)
73 {
74   smpi_bench_end();
75   smpi_execute(duration);
76   smpi_bench_begin();
77 }
78
79 void smpi_bench_begin()
80 {
81   if (smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP) {
82     smpi_switch_data_segment(smpi_process()->index());
83   }
84
85   if (MC_is_active() || MC_record_replay_is_active())
86     return;
87
88 #if HAVE_PAPI
89   if (not xbt_cfg_get_string("smpi/papi-events").empty()) {
90     int event_set = smpi_process()->papi_event_set();
91     // PAPI_start sets everything to 0! See man(3) PAPI_start
92     if (PAPI_LOW_LEVEL_INITED == PAPI_is_initialized()) {
93       if (PAPI_start(event_set) != PAPI_OK) {
94         // TODO This needs some proper handling.
95         XBT_CRITICAL("Could not start PAPI counters.\n");
96         xbt_die("Error.");
97       }
98     }
99   }
100 #endif
101   xbt_os_threadtimer_start(smpi_process()->timer());
102 }
103
104 void smpi_bench_end()
105 {
106   if (MC_is_active() || MC_record_replay_is_active())
107     return;
108
109   double speedup = 1;
110   xbt_os_timer_t timer = smpi_process()->timer();
111   xbt_os_threadtimer_stop(timer);
112
113 #if HAVE_PAPI
114   /**
115    * An MPI function has been called and now is the right time to update
116    * our PAPI counters for this process.
117    */
118   if (xbt_cfg_get_string("smpi/papi-events")[0] != '\0') {
119     papi_counter_t& counter_data        = smpi_process()->papi_counters();
120     int event_set                       = smpi_process()->papi_event_set();
121     std::vector<long long> event_values = std::vector<long long>(counter_data.size());
122
123     if (PAPI_stop(event_set, &event_values[0]) != PAPI_OK) { // Error
124       XBT_CRITICAL("Could not stop PAPI counters.\n");
125       xbt_die("Error.");
126     } else {
127       for (unsigned int i = 0; i < counter_data.size(); i++) {
128         counter_data[i].second += event_values[i];
129       }
130     }
131   }
132 #endif
133
134   if (smpi_process()->sampling()) {
135     XBT_CRITICAL("Cannot do recursive benchmarks.");
136     XBT_CRITICAL("Are you trying to make a call to MPI within a SMPI_SAMPLE_ block?");
137     xbt_backtrace_display_current();
138     xbt_die("Aborting.");
139   }
140
141   if (xbt_cfg_get_string("smpi/comp-adjustment-file")[0] != '\0') { // Maybe we need to artificially speed up or slow
142     // down our computation based on our statistical analysis.
143
144     smpi_trace_call_location_t* loc                            = smpi_process()->call_location();
145     std::string key                                            = loc->get_composed_key();
146     std::unordered_map<std::string, double>::const_iterator it = location2speedup.find(key);
147     if (it != location2speedup.end()) {
148       speedup = it->second;
149     }
150   }
151
152   // Simulate the benchmarked computation unless disabled via command-line argument
153   if (xbt_cfg_get_boolean("smpi/simulate-computation")) {
154     smpi_execute(xbt_os_timer_elapsed(timer)/speedup);
155   }
156
157 #if HAVE_PAPI
158   if (xbt_cfg_get_string("smpi/papi-events")[0] != '\0' && TRACE_smpi_is_enabled()) {
159     container_t container =
160         new simgrid::instr::Container(std::string("rank-") + std::to_string(smpi_process()->index()));
161     papi_counter_t& counter_data = smpi_process()->papi_counters();
162
163     for (auto const& pair : counter_data) {
164       new simgrid::instr::SetVariableEvent(
165           surf_get_clock(), container, PJ_type_get(/* countername */ pair.first.c_str(), container->type), pair.second);
166     }
167   }
168 #endif
169
170   smpi_total_benched_time += xbt_os_timer_elapsed(timer);
171 }
172
173 /* Private sleep function used by smpi_sleep() and smpi_usleep() */
174 static unsigned int private_sleep(double secs)
175 {
176   smpi_bench_end();
177
178   XBT_DEBUG("Sleep for: %lf secs", secs);
179   int rank = MPI_COMM_WORLD->rank();
180   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
181   extra->type=TRACING_SLEEPING;
182   extra->sleep_duration=secs;
183   TRACE_smpi_sleeping_in(rank, extra);
184
185   simcall_process_sleep(secs);
186
187   TRACE_smpi_sleeping_out(rank);
188
189   smpi_bench_begin();
190   return 0;
191 }
192
193 unsigned int smpi_sleep(unsigned int secs)
194 {
195   return private_sleep(static_cast<double>(secs));
196 }
197
198 int smpi_usleep(useconds_t usecs)
199 {
200   return static_cast<int>(private_sleep(static_cast<double>(usecs) / 1000000.0));
201 }
202
203 #if _POSIX_TIMERS > 0
204 int smpi_nanosleep(const struct timespec* tp, struct timespec* /*t*/)
205 {
206   return static_cast<int>(private_sleep(static_cast<double>(tp->tv_sec + tp->tv_nsec / 1000000000.0)));
207 }
208 #endif
209
210 int smpi_gettimeofday(struct timeval* tv, void* /*tz*/)
211 {
212   smpi_bench_end();
213   double now = SIMIX_get_clock();
214   if (tv) {
215     tv->tv_sec = static_cast<time_t>(now);
216 #ifdef WIN32
217     tv->tv_usec = static_cast<useconds_t>((now - tv->tv_sec) * 1e6);
218 #else
219     tv->tv_usec = static_cast<suseconds_t>((now - tv->tv_sec) * 1e6);
220 #endif
221   }
222   smpi_bench_begin();
223   return 0;
224 }
225
226 #if _POSIX_TIMERS > 0
227 int smpi_clock_gettime(clockid_t /*clk_id*/, struct timespec* tp)
228 {
229   //there is only one time in SMPI, so clk_id is ignored.
230   smpi_bench_end();
231   double now = SIMIX_get_clock();
232   if (tp) {
233     tp->tv_sec = static_cast<time_t>(now);
234     tp->tv_nsec = static_cast<long int>((now - tp->tv_sec) * 1e9);
235   }
236   smpi_bench_begin();
237   return 0;
238 }
239 #endif
240
241 extern double sg_surf_precision;
242 unsigned long long smpi_rastro_resolution ()
243 {
244   smpi_bench_end();
245   double resolution = (1/sg_surf_precision);
246   smpi_bench_begin();
247   return static_cast<unsigned long long>(resolution);
248 }
249
250 unsigned long long smpi_rastro_timestamp ()
251 {
252   smpi_bench_end();
253   double now = SIMIX_get_clock();
254
255   unsigned long long sec = static_cast<unsigned long long>(now);
256   unsigned long long pre = (now - sec) * smpi_rastro_resolution();
257   smpi_bench_begin();
258   return static_cast<unsigned long long>(sec) * smpi_rastro_resolution() + pre;
259 }
260
261 /* ****************************** Functions related to the SMPI_SAMPLE_ macros ************************************/
262 namespace {
263 class SampleLocation : public std::string {
264 public:
265   SampleLocation(bool global, const char* file, int line) : std::string(std::string(file) + ":" + std::to_string(line))
266   {
267     if (not global)
268       this->append(":" + std::to_string(smpi_process()->index()));
269   }
270 };
271
272 class LocalData {
273 public:
274   double threshold; /* maximal stderr requested (if positive) */
275   double relstderr; /* observed stderr so far */
276   double mean;      /* mean of benched times, to be used if the block is disabled */
277   double sum;       /* sum of benched times (to compute the mean and stderr) */
278   double sum_pow2;  /* sum of the square of the benched times (to compute the stderr) */
279   int iters;        /* amount of requested iterations */
280   int count;        /* amount of iterations done so far */
281   bool benching;    /* true: we are benchmarking; false: we have enough data, no bench anymore */
282
283   bool need_more_benchs() const;
284 };
285 }
286
287 std::unordered_map<SampleLocation, LocalData, std::hash<std::string>> samples;
288
289 bool LocalData::need_more_benchs() const
290 {
291   bool res = (count < iters) || (threshold > 0.0 && (count < 2 ||          // not enough data
292                                                      relstderr > threshold // stderr too high yet
293                                                      ));
294   XBT_DEBUG("%s (count:%d iter:%d stderr:%f thres:%f mean:%fs)",
295             (res ? "need more data" : "enough benchs"), count, iters, relstderr, threshold, mean);
296   return res;
297 }
298
299 void smpi_sample_1(int global, const char *file, int line, int iters, double threshold)
300 {
301   SampleLocation loc(global, file, line);
302
303   smpi_bench_end();     /* Take time from previous, unrelated computation into account */
304   smpi_process()->set_sampling(1);
305
306   auto insert = samples.emplace(loc, LocalData{
307                                          threshold, // threshold
308                                          0.0,       // relstderr
309                                          0.0,       // mean
310                                          0.0,       // sum
311                                          0.0,       // sum_pow2
312                                          iters,     // iters
313                                          0,         // count
314                                          true       // benching (if we have no data, we need at least one)
315                                      });
316   LocalData& data = insert.first->second;
317   if (insert.second) {
318     XBT_DEBUG("XXXXX First time ever on benched nest %s.", loc.c_str());
319     xbt_assert(threshold > 0 || iters > 0,
320         "You should provide either a positive amount of iterations to bench, or a positive maximal stderr (or both)");
321   } else {
322     if (data.iters != iters || data.threshold != threshold) {
323       XBT_ERROR("Asked to bench block %s with different settings %d, %f is not %d, %f. "
324                 "How did you manage to give two numbers at the same line??",
325                 loc.c_str(), data.iters, data.threshold, iters, threshold);
326       THROW_IMPOSSIBLE;
327     }
328
329     // if we already have some data, check whether sample_2 should get one more bench or whether it should emulate
330     // the computation instead
331     data.benching = data.need_more_benchs();
332     XBT_DEBUG("XXXX Re-entering the benched nest %s. %s", loc.c_str(),
333               (data.benching ? "more benching needed" : "we have enough data, skip computes"));
334   }
335 }
336
337 int smpi_sample_2(int global, const char *file, int line)
338 {
339   SampleLocation loc(global, file, line);
340   int res;
341
342   XBT_DEBUG("sample2 %s", loc.c_str());
343   auto sample = samples.find(loc);
344   if (sample == samples.end())
345     xbt_die("Y U NO use SMPI_SAMPLE_* macros? Stop messing directly with smpi_sample_* functions!");
346   LocalData& data = sample->second;
347
348   if (data.benching) {
349     // we need to run a new bench
350     XBT_DEBUG("benchmarking: count:%d iter:%d stderr:%f thres:%f; mean:%f",
351               data.count, data.iters, data.relstderr, data.threshold, data.mean);
352     res = 1;
353   } else {
354     // Enough data, no more bench (either we got enough data from previous visits to this benched nest, or we just
355     //ran one bench and need to bail out now that our job is done). Just sleep instead
356     XBT_DEBUG("No benchmark (either no need, or just ran one): count >= iter (%d >= %d) or stderr<thres (%f<=%f)."
357               " apply the %fs delay instead",
358               data.count, data.iters, data.relstderr, data.threshold, data.mean);
359     smpi_execute(data.mean);
360     smpi_process()->set_sampling(0);
361     res = 0; // prepare to capture future, unrelated computations
362   }
363   smpi_bench_begin();
364   return res;
365 }
366
367 void smpi_sample_3(int global, const char *file, int line)
368 {
369   SampleLocation loc(global, file, line);
370
371   XBT_DEBUG("sample3 %s", loc.c_str());
372   auto sample = samples.find(loc);
373   if (sample == samples.end())
374     xbt_die("Y U NO use SMPI_SAMPLE_* macros? Stop messing directly with smpi_sample_* functions!");
375   LocalData& data = sample->second;
376
377   if (not data.benching)
378     THROW_IMPOSSIBLE;
379
380   // ok, benchmarking this loop is over
381   xbt_os_threadtimer_stop(smpi_process()->timer());
382
383   // update the stats
384   data.count++;
385   double period  = xbt_os_timer_elapsed(smpi_process()->timer());
386   data.sum      += period;
387   data.sum_pow2 += period * period;
388   double n       = static_cast<double>(data.count);
389   data.mean      = data.sum / n;
390   data.relstderr = sqrt((data.sum_pow2 / n - data.mean * data.mean) / n) / data.mean;
391   if (data.need_more_benchs()) {
392     data.mean = period; // Still in benching process; We want sample_2 to simulate the exact time of this loop
393     // occurrence before leaving, not the mean over the history
394   }
395   XBT_DEBUG("Average mean after %d steps is %f, relative standard error is %f (sample was %f)",
396             data.count, data.mean, data.relstderr, period);
397
398   // That's enough for now, prevent sample_2 to run the same code over and over
399   data.benching = false;
400 }
401
402 extern "C" { /** These functions will be called from the user code **/
403 smpi_trace_call_location_t* smpi_trace_get_call_location()
404 {
405   return smpi_process()->call_location();
406 }
407
408 void smpi_trace_set_call_location(const char* file, const int line)
409 {
410   smpi_trace_call_location_t* loc = smpi_process()->call_location();
411
412   loc->previous_filename   = loc->filename;
413   loc->previous_linenumber = loc->linenumber;
414   loc->filename            = file;
415   loc->linenumber          = line;
416 }
417
418 /** Required for Fortran bindings */
419 void smpi_trace_set_call_location_(const char* file, int* line)
420 {
421   smpi_trace_set_call_location(file, *line);
422 }
423
424 /** Required for Fortran if -fsecond-underscore is activated */
425 void smpi_trace_set_call_location__(const char* file, int* line)
426 {
427   smpi_trace_set_call_location(file, *line);
428 }
429 }
430
431 void smpi_bench_destroy()
432 {
433   samples.clear();
434 }