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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_mu_divappr_q, mpn_preinv_mu_divappr_q.
  2.    Compute Q = floor(N / D) + e.  N is nn limbs, D is dn limbs and must be
  3.    normalized, and Q must be nn-dn limbs, 0 <= e <= 4.  The requirement that Q
  4.    is nn-dn limbs (and not nn-dn+1 limbs) was put in place in order to allow us
  5.    to let N be unmodified during the operation.
  6.    Contributed to the GNU project by Torbjorn Granlund.
  7.    THE FUNCTIONS IN THIS FILE ARE INTERNAL WITH MUTABLE INTERFACES.  IT IS ONLY
  8.    SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES.  IN FACT, IT IS ALMOST
  9.    GUARANTEED THAT THEY WILL CHANGE OR DISAPPEAR IN A FUTURE GMP RELEASE.
  10. Copyright 2005, 2006, 2007, 2009, 2010 Free Software Foundation, Inc.
  11. This file is part of the GNU MP Library.
  12. The GNU MP Library is free software; you can redistribute it and/or modify
  13. it under the terms of the GNU Lesser General Public License as published by
  14. the Free Software Foundation; either version 3 of the License, or (at your
  15. option) any later version.
  16. The GNU MP Library is distributed in the hope that it will be useful, but
  17. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  18. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  19. License for more details.
  20. You should have received a copy of the GNU Lesser General Public License
  21. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  22. /*
  23.    The idea of the algorithm used herein is to compute a smaller inverted value
  24.    than used in the standard Barrett algorithm, and thus save time in the
  25.    Newton iterations, and pay just a small price when using the inverted value
  26.    for developing quotient bits.  This algorithm was presented at ICMS 2006.
  27. */
  28. /* CAUTION: This code and the code in mu_div_qr.c should be edited in sync.
  29.  Things to work on:
  30.   * The itch/scratch scheme isn't perhaps such a good idea as it once seemed,
  31.     demonstrated by the fact that the mpn_invertappr function's scratch needs
  32.     mean that we need to keep a large allocation long after it is needed.
  33.     Things are worse as mpn_mul_fft does not accept any scratch parameter,
  34.     which means we'll have a large memory hole while in mpn_mul_fft.  In
  35.     general, a peak scratch need in the beginning of a function isn't
  36.     well-handled by the itch/scratch scheme.
  37. */
  38. #ifdef STAT
  39. #undef STAT
  40. #define STAT(x) x
  41. #else
  42. #define STAT(x)
  43. #endif
  44. #include <stdlib.h> /* for NULL */
  45. #include "gmp.h"
  46. #include "gmp-impl.h"
  47. mp_limb_t
  48. mpn_mu_divappr_q (mp_ptr qp,
  49.   mp_srcptr np,
  50.   mp_size_t nn,
  51.   mp_srcptr dp,
  52.   mp_size_t dn,
  53.   mp_ptr scratch)
  54. {
  55.   mp_size_t qn, in;
  56.   mp_limb_t cy, qh;
  57.   mp_ptr ip, tp;
  58.   ASSERT (dn > 1);
  59.   qn = nn - dn;
  60.   /* If Q is smaller than D, truncate operands. */
  61.   if (qn + 1 < dn)
  62.     {
  63.       np += dn - (qn + 1);
  64.       nn -= dn - (qn + 1);
  65.       dp += dn - (qn + 1);
  66.       dn = qn + 1;
  67.     }
  68.   /* Compute the inverse size.  */
  69.   in = mpn_mu_divappr_q_choose_in (qn, dn, 0);
  70.   ASSERT (in <= dn);
  71. #if 1
  72.   /* This alternative inverse computation method gets slightly more accurate
  73.      results.  FIXMEs: (1) Temp allocation needs not analysed (2) itch function
  74.      not adapted (3) mpn_invertappr scratch needs not met.  */
  75.   ip = scratch;
  76.   tp = scratch + in + 1;
  77.   /* compute an approximate inverse on (in+1) limbs */
  78.   if (dn == in)
  79.     {
  80.       MPN_COPY (tp + 1, dp, in);
  81.       tp[0] = 1;
  82.       mpn_invertappr (ip, tp, in + 1, NULL);
  83.       MPN_COPY_INCR (ip, ip + 1, in);
  84.     }
  85.   else
  86.     {
  87.       cy = mpn_add_1 (tp, dp + dn - (in + 1), in + 1, 1);
  88.       if (UNLIKELY (cy != 0))
  89. MPN_ZERO (ip, in);
  90.       else
  91. {
  92.   mpn_invertappr (ip, tp, in + 1, NULL);
  93.   MPN_COPY_INCR (ip, ip + 1, in);
  94. }
  95.     }
  96. #else
  97.   /* This older inverse computation method gets slightly worse results than the
  98.      one above.  */
  99.   ip = scratch;
  100.   tp = scratch + in;
  101.   /* Compute inverse of D to in+1 limbs, then round to 'in' limbs.  Ideally the
  102.      inversion function should do this automatically.  */
  103.   if (dn == in)
  104.     {
  105.       tp[in + 1] = 0;
  106.       MPN_COPY (tp + in + 2, dp, in);
  107.       mpn_invertappr (tp, tp + in + 1, in + 1, NULL);
  108.     }
  109.   else
  110.     {
  111.       mpn_invertappr (tp, dp + dn - (in + 1), in + 1, NULL);
  112.     }
  113.   cy = mpn_sub_1 (tp, tp, in + 1, GMP_NUMB_HIGHBIT);
  114.   if (UNLIKELY (cy != 0))
  115.     MPN_ZERO (tp + 1, in);
  116.   MPN_COPY (ip, tp + 1, in);
  117. #endif
  118.   qh = mpn_preinv_mu_divappr_q (qp, np, nn, dp, dn, ip, in, scratch + in);
  119.   return qh;
  120. }
  121. mp_limb_t
  122. mpn_preinv_mu_divappr_q (mp_ptr qp,
  123.  mp_srcptr np,
  124.  mp_size_t nn,
  125.  mp_srcptr dp,
  126.  mp_size_t dn,
  127.  mp_srcptr ip,
  128.  mp_size_t in,
  129.  mp_ptr scratch)
  130. {
  131.   mp_size_t qn;
  132.   mp_limb_t cy, cx, qh;
  133.   mp_limb_t r;
  134.   mp_size_t tn, wn;
  135. #define rp           scratch
  136. #define tp           (scratch + dn)
  137. #define scratch_out  (scratch + dn + tn)
  138.   qn = nn - dn;
  139.   np += qn;
  140.   qp += qn;
  141.   qh = mpn_cmp (np, dp, dn) >= 0;
  142.   if (qh != 0)
  143.     mpn_sub_n (rp, np, dp, dn);
  144.   else
  145.     MPN_COPY (rp, np, dn);
  146.   if (qn == 0)
  147.     return qh; /* Degenerate use.  Should we allow this? */
  148.   while (qn > 0)
  149.     {
  150.       if (qn < in)
  151. {
  152.   ip += in - qn;
  153.   in = qn;
  154. }
  155.       np -= in;
  156.       qp -= in;
  157.       /* Compute the next block of quotient limbs by multiplying the inverse I
  158.  by the upper part of the partial remainder R.  */
  159.       mpn_mul_n (tp, rp + dn - in, ip, in); /* mulhi  */
  160.       cy = mpn_add_n (qp, tp + in, rp + dn - in, in); /* I's msb implicit */
  161.       ASSERT_ALWAYS (cy == 0);
  162.       qn -= in;
  163.       if (qn == 0)
  164. break;
  165.       /* Compute the product of the quotient block and the divisor D, to be
  166.  subtracted from the partial remainder combined with new limbs from the
  167.  dividend N.  We only really need the low dn limbs.  */
  168.       if (BELOW_THRESHOLD (in, MUL_TO_MULMOD_BNM1_FOR_2NXN_THRESHOLD))
  169. mpn_mul (tp, dp, dn, qp, in); /* dn+in limbs, high 'in' cancels */
  170.       else
  171. {
  172.   tn = mpn_mulmod_bnm1_next_size (dn + 1);
  173.   mpn_mulmod_bnm1 (tp, tn, dp, dn, qp, in, scratch_out);
  174.   wn = dn + in - tn; /* number of wrapped limbs */
  175.   if (wn > 0)
  176.     {
  177.       cy = mpn_sub_n (tp, tp, rp + dn - wn, wn);
  178.       cy = mpn_sub_1 (tp + wn, tp + wn, tn - wn, cy);
  179.       cx = mpn_cmp (rp + dn - in, tp + dn, tn - dn) < 0;
  180.       ASSERT_ALWAYS (cx >= cy);
  181.       mpn_incr_u (tp, cx - cy);
  182.     }
  183. }
  184.       r = rp[dn - in] - tp[dn];
  185.       /* Subtract the product from the partial remainder combined with new
  186.  limbs from the dividend N, generating a new partial remainder R.  */
  187.       if (dn != in)
  188. {
  189.   cy = mpn_sub_n (tp, np, tp, in); /* get next 'in' limbs from N */
  190.   cy = mpn_sub_nc (tp + in, rp, tp + in, dn - in, cy);
  191.   MPN_COPY (rp, tp, dn); /* FIXME: try to avoid this */
  192. }
  193.       else
  194. {
  195.   cy = mpn_sub_n (rp, np, tp, in); /* get next 'in' limbs from N */
  196. }
  197.       STAT (int i; int err = 0;
  198.     static int errarr[5]; static int err_rec; static int tot);
  199.       /* Check the remainder R and adjust the quotient as needed.  */
  200.       r -= cy;
  201.       while (r != 0)
  202. {
  203.   /* We loop 0 times with about 69% probability, 1 time with about 31%
  204.      probability, 2 times with about 0.6% probability, if inverse is
  205.      computed as recommended.  */
  206.   mpn_incr_u (qp, 1);
  207.   cy = mpn_sub_n (rp, rp, dp, dn);
  208.   r -= cy;
  209.   STAT (err++);
  210. }
  211.       if (mpn_cmp (rp, dp, dn) >= 0)
  212. {
  213.   /* This is executed with about 76% probability.  */
  214.   mpn_incr_u (qp, 1);
  215.   cy = mpn_sub_n (rp, rp, dp, dn);
  216.   STAT (err++);
  217. }
  218.       STAT (
  219.     tot++;
  220.     errarr[err]++;
  221.     if (err > err_rec)
  222.       err_rec = err;
  223.     if (tot % 0x10000 == 0)
  224.       {
  225. for (i = 0; i <= err_rec; i++)
  226.   printf ("  %d(%.1f%%)", errarr[i], 100.0*errarr[i]/tot);
  227. printf ("n");
  228.       }
  229.     );
  230.     }
  231.   /* FIXME: We should perhaps be somewhat more elegant in our rounding of the
  232.      quotient.  For now, just make sure the returned quotient is >= the real
  233.      quotient; add 3 with saturating arithmetic.  */
  234.   qn = nn - dn;
  235.   cy += mpn_add_1 (qp, qp, qn, 3);
  236.   if (cy != 0)
  237.     {
  238.       if (qh != 0)
  239. {
  240.   /* Return a quotient of just 1-bits, with qh set.  */
  241.   mp_size_t i;
  242.   for (i = 0; i < qn; i++)
  243.     qp[i] = GMP_NUMB_MAX;
  244. }
  245.       else
  246. {
  247.   /* Propagate carry into qh.  */
  248.   qh = 1;
  249. }
  250.     }
  251.   return qh;
  252. }
  253. /* In case k=0 (automatic choice), we distinguish 3 cases:
  254.    (a) dn < qn:         in = ceil(qn / ceil(qn/dn))
  255.    (b) dn/3 < qn <= dn: in = ceil(qn / 2)
  256.    (c) qn < dn/3:       in = qn
  257.    In all cases we have in <= dn.
  258.  */
  259. mp_size_t
  260. mpn_mu_divappr_q_choose_in (mp_size_t qn, mp_size_t dn, int k)
  261. {
  262.   mp_size_t in;
  263.   if (k == 0)
  264.     {
  265.       mp_size_t b;
  266.       if (qn > dn)
  267. {
  268.   /* Compute an inverse size that is a nice partition of the quotient.  */
  269.   b = (qn - 1) / dn + 1; /* ceil(qn/dn), number of blocks */
  270.   in = (qn - 1) / b + 1; /* ceil(qn/b) = ceil(qn / ceil(qn/dn)) */
  271. }
  272.       else if (3 * qn > dn)
  273. {
  274.   in = (qn - 1) / 2 + 1; /* b = 2 */
  275. }
  276.       else
  277. {
  278.   in = (qn - 1) / 1 + 1; /* b = 1 */
  279. }
  280.     }
  281.   else
  282.     {
  283.       mp_size_t xn;
  284.       xn = MIN (dn, qn);
  285.       in = (xn - 1) / k + 1;
  286.     }
  287.   return in;
  288. }
  289. mp_size_t
  290. mpn_mu_divappr_q_itch (mp_size_t nn, mp_size_t dn, int mua_k)
  291. {
  292.   mp_size_t qn, in, itch_local, itch_out;
  293.   qn = nn - dn;
  294.   if (qn + 1 < dn)
  295.     {
  296.       dn = qn + 1;
  297.     }
  298.   in = mpn_mu_divappr_q_choose_in (qn, dn, mua_k);
  299.   itch_local = mpn_mulmod_bnm1_next_size (dn + 1);
  300.   itch_out = mpn_mulmod_bnm1_itch (itch_local, dn, in);
  301.   return in + dn + itch_local + itch_out;
  302. }