]> www.ginac.de Git - cln.git/blob - tests/timeprint.cc
Remove the conversion step .tex -> .texi.
[cln.git] / tests / timeprint.cc
1 #include <cln/number.h>
2 #include <cln/io.h>
3 #include <cln/integer.h>
4 #include <cln/integer_io.h>
5 #include <cln/random.h>
6 #include <cstdlib>
7 #include <cstring>
8 #include <cln/timing.h>
9 #include <cln/malloc.h>
10 using namespace cln;
11
12 int main (int argc, char * argv[])
13 {
14         int repetitions = 1;
15         if ((argc >= 3) && !strcmp(argv[1],"-r")) {
16                 repetitions = atoi(argv[2]);
17                 argc -= 2; argv += 2;
18         }
19         if (argc < 2)
20                 exit(1);
21         cl_I m = cl_I(argv[1]);
22         cl_I M = (cl_I)1 << (intDsize*m);
23         cl_I a = random_I(M);
24         // One run to fill the cache.
25         {
26                 char* p = cl_decimal_string(a);
27                 free_hook(p);
28         }
29         // Now start the timing.
30         { CL_TIMING;
31           for (int rep = repetitions; rep > 0; rep--)
32             { char* p = cl_decimal_string(a); free_hook(p); }
33         }
34 }