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.

47 lines
1.2 KiB

25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
  1. #include <cln/number.h>
  2. #include <cln/io.h>
  3. #include <cln/integer.h>
  4. #include "cl_DS.h"
  5. #include "cl_2DS.h"
  6. #include <cln/random.h>
  7. #include "cl_random_impl.h"
  8. #include <cln/abort.h>
  9. #include <stdlib.h>
  10. #include <string.h>
  11. #include <cln/timing.h>
  12. using namespace cln;
  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 < 3)
  21. exit(1);
  22. uintL a_len = atoi(argv[1]);
  23. uintL b_len = atoi(argv[2]);
  24. if (!(a_len >= b_len && b_len > 0))
  25. exit(1);
  26. SAVE_NUM_STACK;
  27. uintD* a_MSDptr;
  28. uintD* a_LSDptr;
  29. uintD* b_MSDptr;
  30. uintD* b_LSDptr;
  31. uintD* q_MSDptr;
  32. uintD* q_LSDptr;
  33. uintD* q1_MSDptr;
  34. uintD* q1_LSDptr;
  35. num_stack_alloc(a_len,a_MSDptr=,a_LSDptr=);
  36. num_stack_alloc(b_len,b_MSDptr=,b_LSDptr=);
  37. num_stack_alloc(a_len,q_MSDptr=,q_LSDptr=);
  38. num_stack_alloc(a_len,q1_MSDptr=,q1_LSDptr=);
  39. random_UDS(default_random_state,a_MSDptr,a_len);
  40. random_UDS(default_random_state,b_MSDptr,b_len);
  41. lspref(b_LSDptr,0) |= 1; // force b to be odd
  42. { CL_TIMING;
  43. for (int rep = repetitions; rep > 0; rep--)
  44. { div2adic(a_len,a_LSDptr,b_len,b_LSDptr,q_LSDptr); }
  45. }
  46. }