timing.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2009-2012 Université de Bordeaux 1
  4. * Copyright (C) 2010, 2011 Centre National de la Recherche Scientifique
  5. *
  6. * StarPU is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU Lesser General Public License as published by
  8. * the Free Software Foundation; either version 2.1 of the License, or (at
  9. * your option) any later version.
  10. *
  11. * StarPU is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  14. *
  15. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  16. */
  17. #include <sys/time.h>
  18. #include <starpu.h>
  19. #include <common/config.h>
  20. #include <profiling/profiling.h>
  21. #include <common/timing.h>
  22. #if defined(HAVE_CLOCK_GETTIME) && defined(CLOCK_MONOTONIC)
  23. #include <time.h>
  24. #ifndef _POSIX_C_SOURCE
  25. /* for clock_gettime */
  26. #define _POSIX_C_SOURCE 199309L
  27. #endif
  28. #ifdef __linux__
  29. #ifndef CLOCK_MONOTONIC_RAW
  30. #define CLOCK_MONOTONIC_RAW 4
  31. #endif
  32. #endif
  33. static struct timespec _starpu_reference_start_time_ts;
  34. /* Modern CPUs' clocks are usually not synchronized so we use a monotonic clock
  35. * to have consistent timing measurements. The CLOCK_MONOTONIC_RAW clock is not
  36. * subject to NTP adjustments, but is not available on all systems (in that
  37. * case we use the CLOCK_MONOTONIC clock instead). */
  38. static void _starpu_clock_readtime(struct timespec *ts)
  39. {
  40. #ifdef CLOCK_MONOTONIC_RAW
  41. static int raw_supported = 0;
  42. switch (raw_supported)
  43. {
  44. case -1:
  45. break;
  46. case 1:
  47. clock_gettime(CLOCK_MONOTONIC_RAW, ts);
  48. return;
  49. case 0:
  50. if (clock_gettime(CLOCK_MONOTONIC_RAW, ts))
  51. {
  52. raw_supported = -1;
  53. break;
  54. }
  55. else
  56. {
  57. raw_supported = 1;
  58. return;
  59. }
  60. }
  61. #endif
  62. clock_gettime(CLOCK_MONOTONIC, ts);
  63. }
  64. void _starpu_timing_init(void)
  65. {
  66. _starpu_clock_gettime(&_starpu_reference_start_time_ts);
  67. }
  68. void _starpu_clock_gettime(struct timespec *ts)
  69. {
  70. struct timespec absolute_ts;
  71. /* Read the current time */
  72. _starpu_clock_readtime(&absolute_ts);
  73. /* Compute the relative time since initialization */
  74. starpu_timespec_sub(&absolute_ts, &_starpu_reference_start_time_ts, ts);
  75. }
  76. #else // !HAVE_CLOCK_GETTIME
  77. #if defined(__i386__) || defined(__pentium__) || defined(__pentiumpro__) || defined(__i586__) || defined(__i686__) || defined(__k6__) || defined(__k7__) || defined(__x86_64__)
  78. union starpu_u_tick
  79. {
  80. uint64_t tick;
  81. struct
  82. {
  83. uint32_t low;
  84. uint32_t high;
  85. }
  86. sub;
  87. };
  88. #define STARPU_GET_TICK(t) __asm__ volatile("rdtsc" : "=a" ((t).sub.low), "=d" ((t).sub.high))
  89. #define STARPU_TICK_RAW_DIFF(t1, t2) ((t2).tick - (t1).tick)
  90. #define STARPU_TICK_DIFF(t1, t2) (STARPU_TICK_RAW_DIFF(t1, t2) - _starpu_residual)
  91. static union starpu_u_tick _starpu_reference_start_tick;
  92. static double _starpu_scale = 0.0;
  93. static unsigned long long _starpu_residual = 0;
  94. static int _starpu_inited = 0;
  95. void _starpu_timing_init(void)
  96. {
  97. static union starpu_u_tick t1, t2;
  98. int i;
  99. if (_starpu_inited) return;
  100. _starpu_residual = (unsigned long long)1 << 63;
  101. for(i = 0; i < 20; i++)
  102. {
  103. STARPU_GET_TICK(t1);
  104. STARPU_GET_TICK(t2);
  105. _starpu_residual = STARPU_MIN(_starpu_residual, STARPU_TICK_RAW_DIFF(t1, t2));
  106. }
  107. {
  108. struct timeval tv1,tv2;
  109. STARPU_GET_TICK(t1);
  110. gettimeofday(&tv1,0);
  111. usleep(500000);
  112. STARPU_GET_TICK(t2);
  113. gettimeofday(&tv2,0);
  114. _starpu_scale = ((tv2.tv_sec*1e6 + tv2.tv_usec) -
  115. (tv1.tv_sec*1e6 + tv1.tv_usec)) /
  116. (double)(STARPU_TICK_DIFF(t1, t2));
  117. }
  118. STARPU_GET_TICK(_starpu_reference_start_tick);
  119. _starpu_inited = 1;
  120. }
  121. void _starpu_clock_gettime(struct timespec *ts)
  122. {
  123. union starpu_u_tick tick_now;
  124. STARPU_GET_TICK(tick_now);
  125. uint64_t elapsed_ticks = STARPU_TICK_DIFF(_starpu_reference_start_tick, tick_now);
  126. /* We convert this number into nano-seconds so that we can fill the
  127. * timespec structure. */
  128. uint64_t elapsed_ns = (uint64_t)(((double)elapsed_ticks)*(_starpu_scale*1000.0));
  129. long tv_nsec = (elapsed_ns % 1000000000);
  130. time_t tv_sec = (elapsed_ns / 1000000000);
  131. ts->tv_sec = tv_sec;
  132. ts->tv_nsec = tv_nsec;
  133. }
  134. #else // !HAVE_CLOCK_GETTIME & no rdtsc
  135. #warning StarPU could not find a timer, clock will always return 0
  136. void _starpu_timing_init(void)
  137. {
  138. }
  139. void _starpu_clock_gettime(struct timespec *ts)
  140. {
  141. timerclear(ts);
  142. }
  143. #endif
  144. #endif // HAVE_CLOCK_GETTIME
  145. /* Returns the time elapsed between start and end in microseconds */
  146. double starpu_timing_timespec_delay_us(struct timespec *start, struct timespec *end)
  147. {
  148. struct timespec diff;
  149. starpu_timespec_sub(end, start, &diff);
  150. double us = (diff.tv_sec*1e6) + (diff.tv_nsec*1e-3);
  151. return us;
  152. }
  153. double starpu_timing_timespec_to_us(struct timespec *ts)
  154. {
  155. return (1000000.0*ts->tv_sec) + (0.001*ts->tv_nsec);
  156. }
  157. double starpu_timing_now(void)
  158. {
  159. struct timespec now;
  160. _starpu_clock_gettime(&now);
  161. return starpu_timing_timespec_to_us(&now);
  162. }