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.

35 lines
696 B

25 years ago
  1. #include <cl_number.h>
  2. #include <cl_io.h>
  3. #include <cl_integer.h>
  4. #include <cl_random.h>
  5. #include <stdlib.h>
  6. #include <string.h>
  7. #include <cl_timing.h>
  8. int main (int argc, char * argv[])
  9. {
  10. int repetitions = 1;
  11. if ((argc >= 3) && !strcmp(argv[1],"-r")) {
  12. repetitions = atoi(argv[2]);
  13. argc -= 2; argv += 2;
  14. }
  15. if (argc < 2)
  16. exit(1);
  17. cl_I m1;
  18. cl_I m2;
  19. if (argc > 2) {
  20. m1 = cl_I(argv[1]);
  21. m2 = cl_I(argv[2]);
  22. } else {
  23. m2 = cl_I(argv[1]);
  24. m1 = 2*m2;
  25. }
  26. cl_I M1 = (cl_I)1 << (intDsize*m1);
  27. cl_I M2 = (cl_I)1 << (intDsize*m2);
  28. cl_I a = random_I(M1);
  29. cl_I b = random_I(M2);
  30. { CL_TIMING;
  31. for (int rep = repetitions; rep > 0; rep--)
  32. { cl_I_div_t qr = floor2(a,b); }
  33. }
  34. }