1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
|
// Generated code (makeloops.cpp) -- do not edit.
// In KAI C++ 3.2, restrict causes problems for copy propagation.
// Temporary fix: disable restrict
#define BZ_DISABLE_RESTRICT
#include <blitz/vector.h>
#include <blitz/array.h>
#include <blitz/rand-uniform.h>
#include <blitz/benchext.h>
// Generated: makeloops.cpp Dec 11 2002
#ifdef BZ_HAVE_VALARRAY
#define BENCHMARK_VALARRAY
#endif
#ifdef BENCHMARK_VALARRAY
#include <valarray>
#endif
BZ_USING_NAMESPACE(blitz)
#if defined(BZ_FORTRAN_SYMBOLS_WITH_TRAILING_UNDERSCORES)
#define loop3_f77 loop3_f77_
#define loop3_f77overhead loop3_f77overhead_
#define loop3_f90 loop3_f90_
#define loop3_f90overhead loop3_f90overhead_
#elif defined(BZ_FORTRAN_SYMBOLS_WITH_DOUBLE_TRAILING_UNDERSCORES)
#define loop3_f77 loop3_f77__
#define loop3_f77overhead loop3_f77overhead__
#define loop3_f90 loop3_f90__
#define loop3_f90overhead loop3_f90overhead__
#elif defined(BZ_FORTRAN_SYMBOLS_CAPS)
#define loop3_f77 LOOP3_F77
#define loop3_f77overhead LOOP3_F77OVERHEAD
#define loop3_f90 LOOP3_F90
#define loop3_f90overhead LOOP3_F90OVERHEAD
#endif
extern "C" {
void loop3_f77(const int& N, double* x, double* y, const double& a);
void loop3_f77overhead(const int& N, double* x, double* y, const double& a);
void loop3_f90(const int& N, double* x, double* y, const double& a);
void loop3_f90overhead(const int& N, double* x, double* y, const double& a);
}
void VectorVersion(BenchmarkExt<int>& bench, double a);
void ArrayVersion(BenchmarkExt<int>& bench, double a);
void F77Version(BenchmarkExt<int>& bench, double a);
#ifdef FORTRAN_90
void F90Version(BenchmarkExt<int>& bench, double a);
#endif
#ifdef BENCHMARK_VALARRAY
void ValarrayVersion(BenchmarkExt<int>& bench, double a);
#endif
void sink() {}
int main()
{
int numBenchmarks = 5;
#ifndef BENCHMARK_VALARRAY
numBenchmarks--; // No valarray
#endif
#ifndef FORTRAN_90
numBenchmarks--; // No fortran 90
#endif
BenchmarkExt<int> bench("loop3: $y=$y+$a*$x", numBenchmarks);
const int numSizes = 23;
bench.setNumParameters(numSizes);
bench.setRateDescription("Mflops/s");
Vector<int> parameters(numSizes);
Vector<long> iters(numSizes);
Vector<double> flops(numSizes);
for (int i=0; i < numSizes; ++i)
{
parameters[i] = (int)pow(10.0, (i+1)/4.0);
iters[i] = 10000000L / parameters[i];
if (iters[i] < 2)
iters[i] = 2;
flops[i] = 2 * parameters[i];
}
bench.setParameterVector(parameters);
bench.setIterations(iters);
bench.setFlopsPerIteration(flops);
bench.beginBenchmarking();
double a = 0.39123982498157938742;
VectorVersion(bench, a);
ArrayVersion(bench, a);
F77Version(bench, a);
#ifdef FORTRAN_90
F90Version(bench, a);
#endif
#ifdef BENCHMARK_VALARRAY
ValarrayVersion(bench, a);
#endif
bench.endBenchmarking();
bench.saveMatlabGraph("loop3.m");
return 0;
}
template<class T>
void initializeRandomDouble(T data, int numElements, int stride = 1)
{
static Random<Uniform> rnd;
for (int i=0; i < numElements; ++i)
data[size_t(i*stride)] = rnd.random();
}
template<class T>
void initializeArray(T& array, int numElements)
{
static Random<Uniform> rnd;
for (size_t i=0; i < numElements; ++i)
array[i] = rnd.random();
}
void VectorVersion(BenchmarkExt<int>& bench, double a)
{
bench.beginImplementation("Vector<T>");
while (!bench.doneImplementationBenchmark())
{
int N = bench.getParameter();
cout << "Vector<T>: N = " << N << endl;
cout.flush();
long iters = bench.getIterations();
Vector<double> x(N);
initializeRandomDouble(x.data(), N);
Vector<double> y(N);
initializeRandomDouble(y.data(), N);
bench.start();
for (long i=0; i < iters; ++i)
{
y=y+a*x;
sink();
}
bench.stop();
bench.startOverhead();
for (long i=0; i < iters; ++i)
sink();
bench.stopOverhead();
}
bench.endImplementation();
}
void ArrayVersion(BenchmarkExt<int>& bench, double a)
{
bench.beginImplementation("Array<T,1>");
while (!bench.doneImplementationBenchmark())
{
int N = bench.getParameter();
cout << "Array<T,1>: N = " << N << endl;
cout.flush();
long iters = bench.getIterations();
Array<double, 1> x(N);
initializeRandomDouble(x.dataFirst(), N);
Array<double, 1> y(N);
initializeRandomDouble(y.dataFirst(), N);
bench.start();
for (long i=0; i < iters; ++i)
{
y=y+a*x;
sink();
}
bench.stop();
bench.startOverhead();
for (long i=0; i < iters; ++i)
sink();
bench.stopOverhead();
}
bench.endImplementation();
}
#ifdef BENCHMARK_VALARRAY
void ValarrayVersion(BenchmarkExt<int>& bench, double a)
{
bench.beginImplementation("valarray<T>");
while (!bench.doneImplementationBenchmark())
{
int N = bench.getParameter();
cout << "valarray<T>: N = " << N << endl;
cout.flush();
long iters = bench.getIterations();
valarray<double> x(N);
initializeArray(x, N);
valarray<double> y(N);
initializeArray(y, N);
bench.start();
for (long i=0; i < iters; ++i)
{
y=y+a*x;
sink();
}
bench.stop();
bench.startOverhead();
for (long i=0; i < iters; ++i)
sink();
bench.stopOverhead();
}
bench.endImplementation();
}
#endif
void F77Version(BenchmarkExt<int>& bench, double a)
{
bench.beginImplementation("Fortran 77");
while (!bench.doneImplementationBenchmark())
{
int N = bench.getParameter();
cout << "Fortran 77: N = " << N << endl;
cout.flush();
int iters = bench.getIterations();
double* x = new double[N];
initializeRandomDouble(x, N);
double* y = new double[N];
initializeRandomDouble(y, N);
bench.start();
for (int iter=0; iter < iters; ++iter)
loop3_f77(N, x, y, a);
bench.stop();
bench.startOverhead();
for (int iter=0; iter < iters; ++iter)
loop3_f77overhead(N, x, y, a);
bench.stopOverhead();
delete [] x;
delete [] y;
}
bench.endImplementation();
}
#ifdef FORTRAN_90
void F90Version(BenchmarkExt<int>& bench, double a)
{
bench.beginImplementation("Fortran 90");
while (!bench.doneImplementationBenchmark())
{
int N = bench.getParameter();
cout << "Fortran 90: N = " << N << endl;
cout.flush();
int iters = bench.getIterations();
double* x = new double[N];
initializeRandomDouble(x, N);
double* y = new double[N];
initializeRandomDouble(y, N);
bench.start();
for (int iter=0; iter < iters; ++iter)
loop3_f90(N, x, y, a);
bench.stop();
bench.startOverhead();
for (int iter=0; iter < iters; ++iter)
loop3_f90overhead(N, x, y, a);
bench.stopOverhead();
delete [] x;
delete [] y;
}
bench.endImplementation();
}
#endif
|