divmod_1.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:5k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /*
  2. Copyright 1996, 1998, 2000, 2001, 2007 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. #include "tests.h"
  19. #if defined (USG) || defined (__SVR4) || defined (_UNICOS) || defined (__hpux)
  20. #include <time.h>
  21. int
  22. cputime ()
  23. {
  24.   if (CLOCKS_PER_SEC < 100000)
  25.     return clock () * 1000 / CLOCKS_PER_SEC;
  26.   return clock () / (CLOCKS_PER_SEC / 1000);
  27. }
  28. #else
  29. #include <sys/types.h>
  30. #include <sys/time.h>
  31. #include <sys/resource.h>
  32. int
  33. cputime ()
  34. {
  35.   struct rusage rus;
  36.   getrusage (0, &rus);
  37.   return rus.ru_utime.tv_sec * 1000 + rus.ru_utime.tv_usec / 1000;
  38. }
  39. #endif
  40. static void mpn_print (mp_ptr, mp_size_t);
  41. #define M * 1000000
  42. #ifndef CLOCK
  43. #error "Don't know CLOCK of your machine"
  44. #endif
  45. #ifndef OPS
  46. #define OPS 20000000
  47. #endif
  48. #ifndef SIZE
  49. #define SIZE 1000
  50. #endif
  51. #ifndef TIMES
  52. #define TIMES OPS/SIZE
  53. #endif
  54. #ifndef FSIZE
  55. #define FSIZE SIZE
  56. #endif
  57. int
  58. main ()
  59. {
  60.   mp_limb_t np[SIZE];
  61.   mp_limb_t dx[SIZE + FSIZE + 2];
  62.   mp_limb_t dy[SIZE + FSIZE + 2];
  63.   mp_limb_t dlimb;
  64.   mp_size_t nn, fn;
  65.   mp_limb_t retx, rety;
  66.   int test;
  67. #if TIMES != 1
  68.   int i;
  69.   long t0, t;
  70.   double cyc;
  71. #endif
  72.   for (test = 0; ; test++)
  73.     {
  74. #if TIMES == 1 && ! defined (PRINT)
  75.       if (test % (SIZE > 100000 ? 1 : 100000 / SIZE) == 0)
  76. {
  77.   printf ("r%u", test);
  78.   fflush (stdout);
  79. }
  80. #endif
  81. #ifdef RANDOM
  82.       nn = random () % (SIZE + 1);
  83.       fn = random () % (FSIZE + 1);
  84. #else
  85.       nn = SIZE;
  86.       fn = FSIZE;
  87. #endif
  88.       dx[0] = 0x87654321;
  89.       dx[nn + fn + 1] = 0x12345678;
  90.       dy[0] = 0x87654321;
  91.       dy[nn + fn + 1] = 0x12345678;
  92.       mpn_random2 (np, nn);
  93. #ifdef FIXED_DLIMB
  94.       dlimb = FIXED_DLIMB;
  95. #else
  96.       do
  97. {
  98.   mpn_random2 (&dlimb, 1);
  99. #ifdef FORCE_NORM
  100.   dlimb |= GMP_NUMB_HIGHBIT;
  101. #endif
  102. #ifdef FORCE_UNNORM
  103.   dlimb &= GMP_NUMB_MAX >> 1;
  104. #endif
  105. }
  106.       while (dlimb == 0);
  107. #endif
  108. #if defined (PRINT) || defined (XPRINT)
  109.       printf ("N=");
  110.       mpn_print (np, nn);
  111.       printf ("D=");
  112.       mpn_print (&dlimb, 1);
  113.       printf ("nn=%ldn", (long) nn);
  114. #endif
  115. #if TIMES != 1
  116.       t0 = cputime();
  117.       for (i = 0; i < TIMES; i++)
  118. mpn_divrem_1 (dx + 1, 0L, np, nn, dlimb);
  119.       t = cputime() - t0;
  120.       cyc = ((double) t * CLOCK) / (TIMES * nn * 1000.0);
  121.       printf ("mpn_divrem_1 int:    %5ldms (%.3f cycles/limb) [%.2f Gb/s]n",
  122.       t, cyc,
  123.       CLOCK/cyc*GMP_LIMB_BITS*GMP_LIMB_BITS/1e9);
  124.       t0 = cputime();
  125.       for (i = 0; i < TIMES; i++)
  126. mpn_divrem_1 (dx + 1, fn, np, 0, dlimb);
  127.       t = cputime() - t0;
  128.       cyc = ((double) t * CLOCK) / (TIMES * fn * 1000.0);
  129.       printf ("mpn_divrem_1 frac:   %5ldms (%.3f cycles/limb) [%.2f Gb/s]n",
  130.       t, cyc,
  131.       CLOCK/cyc*GMP_LIMB_BITS*GMP_LIMB_BITS/1e9);
  132. #endif
  133.       retx = refmpn_divrem_1 (dx + 1, fn, np, nn, dlimb);
  134.       rety = mpn_divrem_1 (dy + 1, fn, np, nn, dlimb);
  135. #ifndef NOCHECK
  136.       if (retx != rety || mpn_cmp (dx, dy, fn + nn + 2) != 0)
  137. {
  138.   printf ("ERROR in test %d, nn=%ld, fn=%ldn", test, nn, fn);
  139.   mpn_print (np, nn);
  140.   mpn_print (&dlimb, 1);
  141.   printf ("rq: ");
  142.   mpn_print (dx + 1, nn + fn);
  143.   printf ("rr: %*lXn", (int) (2 * sizeof(mp_limb_t)), retx);
  144.   printf (" q: ");
  145.   mpn_print (dy + 1, nn + fn);
  146.   printf (" r: %*lXn", (int) (2 * sizeof(mp_limb_t)), rety);
  147.   if (dy[0] != 0x87654321)
  148.     printf ("clobbered at low end %*lXn", (int) (2 * sizeof(mp_limb_t)), dy[0]);
  149.   if (dy[nn + fn + 1] != 0x12345678)
  150.     printf ("clobbered at high endn");
  151.   abort ();
  152. }
  153. #endif
  154.     }
  155. }
  156. static void
  157. mpn_print (mp_ptr p, mp_size_t size)
  158. {
  159.   mp_size_t i;
  160.   for (i = size - 1; i >= 0; i--)
  161.     {
  162. #ifdef _LONG_LONG_LIMB
  163.       printf ("%0*lX%0*lX", (int) (sizeof(mp_limb_t)),
  164.       (unsigned long) (p[i] >> (GMP_LIMB_BITS/2)),
  165.               (int) (sizeof(mp_limb_t)), (unsigned long) (p[i]));
  166. #else
  167.       printf ("%0*lX", (int) (2 * sizeof(mp_limb_t)), p[i]);
  168. #endif
  169. #ifdef SPACE
  170.       if (i != 0)
  171. printf (" ");
  172. #endif
  173.     }
  174.   puts ("");
  175. }