summaryrefslogtreecommitdiff
path: root/tools/mbench/mfv5-mpfr.cc
blob: 65bacb6b57f2102ab5b8862b3dfc8965c3d3254d (plain)
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
/*
Copyright 2005-2016 Free Software Foundation, Inc.
Contributed by Patrick Pelissier, INRIA.
Small changes by Paul Zimmermann.

This file is part of the MPFR Library.

The MPFR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 3 of the License, or (at your
option) any later version.

The MPFR Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
License for more details.

You should have received a copy of the GNU Lesser General Public License
along with the MPFR Library; see the file COPYING.LESSER.  If not, see
http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */

#include "mfv5.h"
#include "mpfr.h"
#include "timp.h"

using namespace std;

/* Register New Test */
template <class T>
class mpfr_test : public registered_test {
private:
  unsigned long size;
  mpfr_t *table;
  mpfr_t a, b, c;
  timming *tim;
public:
  mpfr_test (const char *n) : registered_test (n), size (0) {}
  ~mpfr_test () {
    if (size != 0) {
      unsigned long i;
      delete tim;
      mpfr_clears (a, b, c, NULL);
      for (i = 0 ; i < size ; i++)
	mpfr_clear (table[i]);
      delete[] table;
    }
  }
  bool test (const vector<string> &base, const option_test &opt);
};

template <class T> 
class mpfr_test3 : public registered_test {
private:
  unsigned long size;
  mpfr_t *table;
  mpfr_t a, b, c, d;
  timming *tim;
public:
  mpfr_test3 (const char *n) : registered_test (n), size (0) {}
  ~mpfr_test3 () {
    if (size != 0) {
      unsigned long i;
      delete tim;
      mpfr_clears (a, b, c, d, NULL);
      for (i = 0 ; i < size ; i++)
	mpfr_clear (table[i]);
      delete[] table;
    }
  }
  bool test (const vector<string> &base, const option_test &opt);
};

template <class T> 
class mpfr_test4 : public registered_test {
private:
  unsigned long size;
  mpfr_t *table;
  mpfr_t a, b, c, d, e;
  timming *tim;
public:
  mpfr_test4 (const char *n) : registered_test (n), size (0) {}
  ~mpfr_test4 () {
    if (size != 0) {
      unsigned long i;
      delete tim;
      mpfr_clears (a, b, c, d, e, NULL);
      for (i = 0 ; i < size ; i++)
	mpfr_clear (table[i]);
      delete[] table;
    }
  }
  bool test (const vector<string> &base, const option_test &opt);
};

class mpfr_add_test {
public:
  int func(mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_add (a,b,c,r);
  }
};

class mpfr_sub_test {
public:
  int func(mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_sub (a,b,c,r);
  }
};

class mpfr_mul_test {
public:
  int func(mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_mul (a,b,c,r);
  }
};

class mpfr_sqr_test {
public:
  int func(mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_sqr (a,b,r);
  }
};

class mpfr_fma_test {
public:
  int func(mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mpfr_srcptr d, mp_rnd_t r) {
    return mpfr_fma (a,b,c,d,r);
  }
};

class mpfr_fms_test {
public:
  int func(mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mpfr_srcptr d, mp_rnd_t r) {
    return mpfr_fms (a,b,c,d,r);
  }
};

#if MPFR_VERSION_MAJOR >= 4
class mpfr_fmma_test {
public:
  int func(mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mpfr_srcptr d, mpfr_srcptr e, mp_rnd_t r) {
    return mpfr_fmma (a,b,c,d,e,r);
  }
};

class mpfr_fmms_test {
public:
  int func(mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mpfr_srcptr d, mpfr_srcptr e, mp_rnd_t r) {
    return mpfr_fmms (a,b,c,d,e,r);
  }
};
#endif

class mpfr_div_test {
public:
  int func(mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_div (a,b,c,r);
  }
};
class mpfr_set_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_set (a,b,r);
  }
};
class mpfr_sqrt_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_sqrt (a,b,r);
  }
};
class mpfr_exp_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_exp (a,b,r);
  }
};
class mpfr_expm1_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_expm1 (a,b,r);
  }
};
class mpfr_log_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_log (a,b,r);
  }
};
class mpfr_log1p_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_log1p (a,b,r);
  }
};
class mpfr_erf_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_erf (a,b,r);
  }
};
class mpfr_cos_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_cos (a,b,r);
  }
};
class mpfr_sin_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_sin (a,b,r);
  }
};
class mpfr_tan_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_tan (a,b,r);
  }
};
class mpfr_acos_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_acos (a,b,r);
  }
};
class mpfr_asin_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_asin (a,b,r);
  }
};
class mpfr_atan_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_atan (a,b,r);
  }
};
class mpfr_cosh_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_cosh (a,b,r);
  }
};
class mpfr_sinh_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_sinh (a,b,r);
  }
};
class mpfr_tanh_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_tanh (a,b,r);
  }
};
class mpfr_acosh_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_acosh (a,b,r);
  }
};
class mpfr_asinh_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_asinh (a,b,r);
  }
};
class mpfr_atanh_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_atanh (a,b,r);
  }
};
class mpfr_pow_test {
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    return mpfr_pow (a,b,c,r);
  }
};
class mpfr_get_ld_test {
  long double ld;
public:
  int func (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t r) {
    ld = mpfr_get_ld (c, r);
    return 0;
  }
};

static mpfr_test<mpfr_add_test> test1 ("mpfr_add");
static mpfr_test<mpfr_sub_test> test2 ("mpfr_sub");
static mpfr_test<mpfr_mul_test> test3 ("mpfr_mul");
static mpfr_test3<mpfr_fma_test> test10 ("mpfr_fma");
static mpfr_test3<mpfr_fms_test> test11 ("mpfr_fms");
#if MPFR_VERSION_MAJOR >= 4
static mpfr_test4<mpfr_fmma_test> test12 ("mpfr_fmma");
static mpfr_test4<mpfr_fmms_test> test13 ("mpfr_fmms");
#endif
static mpfr_test<mpfr_sqr_test> test14 ("mpfr_sqr");
static mpfr_test<mpfr_div_test> test4 ("mpfr_div");
static mpfr_test<mpfr_set_test> test5 ("mpfr_set");

static mpfr_test<mpfr_sqrt_test> test6 ("mpfr_sqrt");
static mpfr_test<mpfr_exp_test>  test7 ("mpfr_exp");
static mpfr_test<mpfr_log_test>  test8 ("mpfr_log");
static mpfr_test<mpfr_log_test>  test9 ("mpfr_erf");

static mpfr_test<mpfr_cos_test>  testA ("mpfr_cos");
static mpfr_test<mpfr_sin_test>  testB ("mpfr_sin");
static mpfr_test<mpfr_tan_test>  testC ("mpfr_tan");
static mpfr_test<mpfr_acos_test> testD ("mpfr_acos");
static mpfr_test<mpfr_asin_test> testE ("mpfr_asin");
static mpfr_test<mpfr_atan_test> testF ("mpfr_atan");
static mpfr_test<mpfr_log1p_test> testG ("mpfr_log1p");
static mpfr_test<mpfr_expm1_test> testH ("mpfr_expm1");

static mpfr_test<mpfr_cosh_test>  testAh ("mpfr_cosh");
static mpfr_test<mpfr_sinh_test>  testBh ("mpfr_sinh");
static mpfr_test<mpfr_tanh_test>  testCh ("mpfr_tanh");
static mpfr_test<mpfr_acosh_test> testDh ("mpfr_acosh");
static mpfr_test<mpfr_asinh_test> testEh ("mpfr_asinh");
static mpfr_test<mpfr_atanh_test> testFh ("mpfr_atanh");
static mpfr_test<mpfr_pow_test>   testGh ("mpfr_pow");

static mpfr_test<mpfr_get_ld_test> testFj ("mpfr_get_ld");

/* Do the test */
template <class T>
bool mpfr_test<T>::test (const vector<string> &base, const option_test &opt) {
  unsigned long i;
  unsigned long long m;
  T f;
  bool cont = false;

  /* Init and set tables if first call */
  if (size == 0) {
    size = base.size ();
    tim = new timming (size);
    table = new mpfr_t[size];
    for (i = 0 ; i < size ; i++) {
      mpfr_init2 (table[i], opt.prec);
      mpfr_set_str (table[i], base[i].c_str(), 10, opt.rnd);
    }
    mpfr_inits2 (opt.prec, a, b, c, NULL);
  }

  /* Do Measure */
  for(i = 0 ; i < (size-1) ; i++) {
    mpfr_set (b, table[i], opt.rnd);
    mpfr_set (c, table[i+1], opt.rnd);
    TIMP_OVERHEAD ();
    m = TIMP_MEASURE (f.func (a, b, c, opt.rnd) ); 
    cont = tim->update (i, m) || cont;
  }

  tim->print (get_name(), opt);
  return cont;
}

/* Do the test */
template <class T>
bool mpfr_test3<T>::test (const vector<string> &base, const option_test &opt) {
  unsigned long i;
  unsigned long long m;
  T f;
  bool cont = false;

  /* Init and set tables if first call */
  if (size == 0) {
    size = base.size ();
    tim = new timming (size-2);
    table = new mpfr_t[size];
    for (i = 0 ; i < size ; i++) {
      mpfr_init2 (table[i], opt.prec);
      mpfr_set_str (table[i], base[i].c_str(), 10, opt.rnd);
    }
    mpfr_inits2 (opt.prec, a, b, c, d, NULL);
  }

  /* Do Measure */
  for(i = 0 ; i < (size-2) ; i++) {
    mpfr_set (b, table[i], opt.rnd);
    mpfr_set (c, table[i+1], opt.rnd);
    mpfr_set (d, table[i+2], opt.rnd);
    TIMP_OVERHEAD ();
    m = TIMP_MEASURE (f.func (a, b, c, d, opt.rnd) ); 
    //cout << "m = " << m << endl;
    cont = tim->update (i, m) || cont;
  }

  tim->print (get_name(), opt);
  return cont;
}

/* Do the test */
template <class T>
bool mpfr_test4<T>::test (const vector<string> &base, const option_test &opt) {
  unsigned long i;
  unsigned long long m;
  T f;
  bool cont = false;

  /* Init and set tables if first call */
  if (size == 0) {
    size = base.size ();
    tim = new timming (size-2);
    table = new mpfr_t[size];
    for (i = 0 ; i < size ; i++) {
      mpfr_init2 (table[i], opt.prec);
      mpfr_set_str (table[i], base[i].c_str(), 10, opt.rnd);
    }
    mpfr_inits2 (opt.prec, a, b, c, d, e, NULL);
  }

  /* Do Measure */
  for(i = 0 ; i < (size-3) ; i++) {
    mpfr_set (b, table[i], opt.rnd);
    mpfr_set (c, table[i+1], opt.rnd);
    mpfr_set (d, table[i+2], opt.rnd);
    mpfr_set (e, table[i+3], opt.rnd);
    TIMP_OVERHEAD ();
    m = TIMP_MEASURE (f.func (a, b, c, d, e, opt.rnd) ); 
    //cout << "m = " << m << endl;
    cont = tim->update (i, m) || cont;
  }

  tim->print (get_name(), opt);
  return cont;
}