You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
945 B

25 years ago
  1. #include <cln/number.h>
  2. #include <cln/io.h>
  3. #include <cln/float.h>
  4. #include <cln/lfloat.h>
  5. #include "float/lfloat/cl_LF.h"
  6. #include <cln/real.h>
  7. #include <cln/random.h>
  8. #include <cstdlib>
  9. #include <cstring>
  10. #include <cln/timing.h>
  11. int main (int argc, char * argv[])
  12. {
  13. int repetitions = 1;
  14. if ((argc >= 3) && !strcmp(argv[1],"-r")) {
  15. repetitions = atoi(argv[2]);
  16. argc -= 2; argv += 2;
  17. }
  18. if (argc < 3)
  19. exit(1);
  20. extern double cl_exp_factor;
  21. extern int cl_exp_algo;
  22. uintL len = atoi(argv[1]);
  23. cl_exp_factor = atof(argv[2]);
  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. cl_exp_algo = 0;
  33. { CL_TIMING;
  34. for (int rep = repetitions; rep > 0; rep--)
  35. { y = exp(x); }
  36. }
  37. // cout << y << endl;
  38. cl_exp_algo = 1;
  39. { CL_TIMING;
  40. for (int rep = repetitions; rep > 0; rep--)
  41. { y = exp(x); }
  42. }
  43. // cout << y << endl;
  44. }