]> www.ginac.de Git - cln.git/blob - tests/timeLFatan.cc
Fix typo.
[cln.git] / tests / timeLFatan.cc
1 #include <cl_number.h>
2 #include <cl_io.h>
3 #include <cl_float.h>
4 #include <cl_float_io.h>
5 #include <cl_lfloat.h>
6 #include "cl_LF.h"
7 #include <cl_real.h>
8 #include <cl_random.h>
9 #include <stdlib.h>
10 #include <string.h>
11 #include <cl_timing.h>
12
13 int main (int argc, char * argv[])
14 {
15         int repetitions = 1;
16         if ((argc >= 3) && !strcmp(argv[1],"-r")) {
17                 repetitions = atoi(argv[2]);
18                 argc -= 2; argv += 2;
19         }
20         if (argc < 2)
21                 exit(1);
22         extern int cl_atan_algo;
23         uintL len = atoi(argv[1]);
24 #if 0
25         cl_LF one = cl_I_to_LF(1,len);
26         cl_F x = scale_float(random_F(one),-1);
27         cout << x << endl;
28 #else
29         cl_F x = sqrt(cl_I_to_LF(2,len))-1;
30 #endif
31         cl_F y;
32 #if 0
33         cl_atan_algo = 0;
34         { CL_TIMING;
35           for (int rep = repetitions; rep > 0; rep--)
36             { y = atan(x); }
37         }
38         cout << y << endl;
39         cl_atan_algo = 1;
40 #endif
41         { CL_TIMING;
42           for (int rep = repetitions; rep > 0; rep--)
43             { y = atan(x); }
44         }
45         cout << y << endl;
46 }