annotate src/fftw-3.3.3/kernel/timer.c @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 89f5e221ed7b
children
rev   line source
cannam@95 1 /*
cannam@95 2 * Copyright (c) 2003, 2007-11 Matteo Frigo
cannam@95 3 * Copyright (c) 2003, 2007-11 Massachusetts Institute of Technology
cannam@95 4 *
cannam@95 5 * This program is free software; you can redistribute it and/or modify
cannam@95 6 * it under the terms of the GNU General Public License as published by
cannam@95 7 * the Free Software Foundation; either version 2 of the License, or
cannam@95 8 * (at your option) any later version.
cannam@95 9 *
cannam@95 10 * This program is distributed in the hope that it will be useful,
cannam@95 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
cannam@95 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
cannam@95 13 * GNU General Public License for more details.
cannam@95 14 *
cannam@95 15 * You should have received a copy of the GNU General Public License
cannam@95 16 * along with this program; if not, write to the Free Software
cannam@95 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
cannam@95 18 *
cannam@95 19 */
cannam@95 20
cannam@95 21
cannam@95 22 #include "ifftw.h"
cannam@95 23
cannam@95 24 #ifdef HAVE_UNISTD_H
cannam@95 25 # include <unistd.h>
cannam@95 26 #endif
cannam@95 27
cannam@95 28 #ifndef WITH_SLOW_TIMER
cannam@95 29 # include "cycle.h"
cannam@95 30 #endif
cannam@95 31
cannam@95 32 #ifndef FFTW_TIME_LIMIT
cannam@95 33 #define FFTW_TIME_LIMIT 2.0 /* don't run for more than two seconds */
cannam@95 34 #endif
cannam@95 35
cannam@95 36 /* the following code is disabled for now, because it seems to
cannam@95 37 require that we #include <windows.h> in ifftw.h to
cannam@95 38 typedef LARGE_INTEGER crude_time, and this pulls in the whole
cannam@95 39 Windows universe and leads to namespace conflicts (unless
cannam@95 40 we did some hack like assuming sizeof(LARGE_INTEGER) == sizeof(long long).
cannam@95 41 gettimeofday is provided by MinGW, which we use to cross-compile
cannam@95 42 FFTW for Windows, and this seems to work well enough */
cannam@95 43 #if 0 && (defined(__WIN32__) || defined(_WIN32) || defined(_WIN64))
cannam@95 44 crude_time X(get_crude_time)(void)
cannam@95 45 {
cannam@95 46 crude_time tv;
cannam@95 47 QueryPerformanceCounter(&tv);
cannam@95 48 return tv;
cannam@95 49 }
cannam@95 50
cannam@95 51 static double elapsed_since(crude_time t0)
cannam@95 52 {
cannam@95 53 crude_time t1, freq;
cannam@95 54 QueryPerformanceCounter(&t1);
cannam@95 55 QueryPerformanceFrequency(&freq);
cannam@95 56 return (((double) (t1.QuadPart - t0.QuadPart))) /
cannam@95 57 ((double) freq.QuadPart);
cannam@95 58 }
cannam@95 59
cannam@95 60 # define TIME_MIN_SEC 1.0e-2
cannam@95 61
cannam@95 62 #elif defined(HAVE_GETTIMEOFDAY)
cannam@95 63 crude_time X(get_crude_time)(void)
cannam@95 64 {
cannam@95 65 crude_time tv;
cannam@95 66 gettimeofday(&tv, 0);
cannam@95 67 return tv;
cannam@95 68 }
cannam@95 69
cannam@95 70 #define elapsed_sec(t1,t0) ((double)(t1.tv_sec - t0.tv_sec) + \
cannam@95 71 (double)(t1.tv_usec - t0.tv_usec) * 1.0E-6)
cannam@95 72
cannam@95 73 static double elapsed_since(crude_time t0)
cannam@95 74 {
cannam@95 75 crude_time t1;
cannam@95 76 gettimeofday(&t1, 0);
cannam@95 77 return elapsed_sec(t1, t0);
cannam@95 78 }
cannam@95 79
cannam@95 80 # define TIME_MIN_SEC 1.0e-3
cannam@95 81
cannam@95 82 #else /* !HAVE_GETTIMEOFDAY */
cannam@95 83
cannam@95 84 /* Note that the only system where we are likely to need to fall back
cannam@95 85 on the clock() function is Windows, for which CLOCKS_PER_SEC is 1000
cannam@95 86 and thus the clock wraps once every 50 days. This should hopefully
cannam@95 87 be longer than the time required to create any single plan! */
cannam@95 88 crude_time X(get_crude_time)(void) { return clock(); }
cannam@95 89
cannam@95 90 #define elapsed_sec(t1,t0) ((double) ((t1) - (t0)) / CLOCKS_PER_SEC)
cannam@95 91
cannam@95 92 static double elapsed_since(crude_time t0)
cannam@95 93 {
cannam@95 94 return elapsed_sec(clock(), t0);
cannam@95 95 }
cannam@95 96
cannam@95 97 # define TIME_MIN_SEC 2.0e-1 /* from fftw2 */
cannam@95 98
cannam@95 99 #endif /* !HAVE_GETTIMEOFDAY */
cannam@95 100
cannam@95 101 double X(elapsed_since)(const planner *plnr, const problem *p, crude_time t0)
cannam@95 102 {
cannam@95 103 double t = elapsed_since(t0);
cannam@95 104 if (plnr->cost_hook)
cannam@95 105 t = plnr->cost_hook(p, t, COST_MAX);
cannam@95 106 return t;
cannam@95 107 }
cannam@95 108
cannam@95 109 #ifdef WITH_SLOW_TIMER
cannam@95 110 /* excruciatingly slow; only use this if there is no choice! */
cannam@95 111 typedef crude_time ticks;
cannam@95 112 # define getticks X(get_crude_time)
cannam@95 113 # define elapsed(t1,t0) elapsed_sec(t1,t0)
cannam@95 114 # define TIME_MIN TIME_MIN_SEC
cannam@95 115 # define TIME_REPEAT 4 /* from fftw2 */
cannam@95 116 # define HAVE_TICK_COUNTER
cannam@95 117 #endif
cannam@95 118
cannam@95 119 #ifdef HAVE_TICK_COUNTER
cannam@95 120
cannam@95 121 # ifndef TIME_MIN
cannam@95 122 # define TIME_MIN 100.0
cannam@95 123 # endif
cannam@95 124
cannam@95 125 # ifndef TIME_REPEAT
cannam@95 126 # define TIME_REPEAT 8
cannam@95 127 # endif
cannam@95 128
cannam@95 129 static double measure(plan *pln, const problem *p, int iter)
cannam@95 130 {
cannam@95 131 ticks t0, t1;
cannam@95 132 int i;
cannam@95 133
cannam@95 134 t0 = getticks();
cannam@95 135 for (i = 0; i < iter; ++i)
cannam@95 136 pln->adt->solve(pln, p);
cannam@95 137 t1 = getticks();
cannam@95 138 return elapsed(t1, t0);
cannam@95 139 }
cannam@95 140
cannam@95 141
cannam@95 142 double X(measure_execution_time)(const planner *plnr,
cannam@95 143 plan *pln, const problem *p)
cannam@95 144 {
cannam@95 145 int iter;
cannam@95 146 int repeat;
cannam@95 147
cannam@95 148 X(plan_awake)(pln, AWAKE_ZERO);
cannam@95 149 p->adt->zero(p);
cannam@95 150
cannam@95 151 start_over:
cannam@95 152 for (iter = 1; iter; iter *= 2) {
cannam@95 153 double tmin = 0;
cannam@95 154 int first = 1;
cannam@95 155 crude_time begin = X(get_crude_time)();
cannam@95 156
cannam@95 157 /* repeat the measurement TIME_REPEAT times */
cannam@95 158 for (repeat = 0; repeat < TIME_REPEAT; ++repeat) {
cannam@95 159 double t = measure(pln, p, iter);
cannam@95 160
cannam@95 161 if (plnr->cost_hook)
cannam@95 162 t = plnr->cost_hook(p, t, COST_MAX);
cannam@95 163 if (t < 0)
cannam@95 164 goto start_over;
cannam@95 165
cannam@95 166 if (first || t < tmin)
cannam@95 167 tmin = t;
cannam@95 168 first = 0;
cannam@95 169
cannam@95 170 /* do not run for too long */
cannam@95 171 if (X(elapsed_since)(plnr, p, begin) > FFTW_TIME_LIMIT)
cannam@95 172 break;
cannam@95 173 }
cannam@95 174
cannam@95 175 if (tmin >= TIME_MIN) {
cannam@95 176 X(plan_awake)(pln, SLEEPY);
cannam@95 177 return tmin / (double) iter;
cannam@95 178 }
cannam@95 179 }
cannam@95 180 goto start_over; /* may happen if timer is screwed up */
cannam@95 181 }
cannam@95 182
cannam@95 183 #else /* no cycle counter */
cannam@95 184
cannam@95 185 double X(measure_execution_time)(const planner *plnr,
cannam@95 186 plan *pln, const problem *p)
cannam@95 187 {
cannam@95 188 UNUSED(plnr);
cannam@95 189 UNUSED(p);
cannam@95 190 UNUSED(pln);
cannam@95 191 return -1.0;
cannam@95 192 }
cannam@95 193
cannam@95 194 #endif