summaryrefslogtreecommitdiff
path: root/tools/mbench/mfv5-libc.cc
blob: 73435455b5b99ec9d6878ff0b221ab33869d728f (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
/*
Copyright 2005-2009 Free Software Foundation, Inc.
Contributed by Patrick Pelissier, INRIA.

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 <math.h>
#include <float.h>

#include "mpfr.h"

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


using namespace std;

/* Register New Test */
template <class T>
class libc_test : public registered_test {
private:
  unsigned long size;
  double *table;
  timming *tim;
public:
  libc_test (const char *n) : registered_test (n), size (0) {}
  ~libc_test () {
    if (size != 0) {
      delete tim;
      delete[] table;
    }
  }
  bool test (const vector<string> &base, const option_test &opt);
};

class libc_sqrt_test {
public:
  inline double func (double a) {
    return sqrt (a);
  }
};
class libc_exp_test {
public:
  inline double func (double a) {
    return exp (a);
  }
};
class libc_log_test {
public:
  inline double func (double a) {
    return log (a);
  }
};
class libc_cos_test {
public:
  inline double func (double a) {
    return cos (a);
  }
};
class libc_sin_test {
public:
  inline double func (double a) {
    return sin (a);
  }
};
class libc_tan_test {
public:
  inline double func (double a) {
    return tan (a);
  }
};
class libc_acos_test {
public:
  inline double func (double a) {
    return acos (a);
  }
};
class libc_asin_test {
public:
  inline double func (double a) {
    return asin (a);
  }
};
class libc_atan_test {
public:
  inline double func (double a) {
    return atan (a);
  }
};
class libc_cosh_test {
public:
  inline double func (double a) {
    return cosh (a);
  }
};
class libc_sinh_test {
public:
  inline double func (double a) {
    return sinh (a);
  }
};
class libc_tanh_test {
public:
  inline double func (double a) {
    return tanh (a);
  }
};
class libc_acosh_test {
public:
  inline double func (double a) {
    return acosh (a);
  }
};
class libc_asinh_test {
public:
  inline double func (double a) {
    return asinh (a);
  }
};
class libc_atanh_test {
public:
  inline double func (double a) {
    return atanh (a);
  }
};


static libc_test<libc_sqrt_test> test6 ("libc_sqrt");
static libc_test<libc_exp_test>  test7 ("libc_exp");
static libc_test<libc_log_test>  test8 ("libc_log");

static libc_test<libc_cos_test>  testA ("libc_cos");
static libc_test<libc_sin_test>  testB ("libc_sin");
static libc_test<libc_tan_test>  testC ("libc_tan");
static libc_test<libc_acos_test> testD ("libc_acos");
static libc_test<libc_asin_test> testE ("libc_asin");
static libc_test<libc_atan_test> testF ("libc_atan");

static libc_test<libc_cosh_test>  testAh ("libc_cosh");
static libc_test<libc_sinh_test>  testBh ("libc_sinh");
static libc_test<libc_tanh_test>  testCh ("libc_tanh");
static libc_test<libc_acosh_test> testDh ("libc_acosh");
static libc_test<libc_asinh_test> testEh ("libc_asinh");
static libc_test<libc_atanh_test> testFh ("libc_atanh");

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

  /* Init and set tables if first call */
  if (size == 0) {
    mpfr_t x;
    size = base.size ();
    tim = new timming (size);
    table = new double[size];
    mpfr_init2 (x, 530);
    for (i = 0 ; i < size ; i++) {
      mpfr_set_str (x, base[i].c_str(), 10, MPFR_RNDN);
      table[i] = mpfr_get_d (x, MPFR_RNDN);
    }
    mpfr_clear (x);
  }

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

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