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

数学计算

开发平台:

Unix_Linux

  1. /* Implementation of the multiplication algorithm for Toom-Cook 8.5-way.
  2.    Contributed to the GNU project by Marco Bodrato.
  3.    THE FUNCTION IN THIS FILE IS INTERNAL WITH A MUTABLE INTERFACE.  IT IS ONLY
  4.    SAFE TO REACH IT THROUGH DOCUMENTED INTERFACES.  IN FACT, IT IS ALMOST
  5.    GUARANTEED THAT IT WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE.
  6. Copyright 2009, 2010 Free Software Foundation, Inc.
  7. This file is part of the GNU MP Library.
  8. The GNU MP Library is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU Lesser General Public License as published by
  10. the Free Software Foundation; either version 3 of the License, or (at your
  11. option) any later version.
  12. The GNU MP Library is distributed in the hope that it will be useful, but
  13. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  14. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  15. License for more details.
  16. You should have received a copy of the GNU Lesser General Public License
  17. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  18. #include "gmp.h"
  19. #include "gmp-impl.h"
  20. #if GMP_NUMB_BITS < 29
  21. #error Not implemented.
  22. #endif
  23. #if GMP_NUMB_BITS < 43
  24. #define BIT_CORRECTION 1
  25. #define CORRECTION_BITS GMP_NUMB_BITS
  26. #else
  27. #define BIT_CORRECTION 0
  28. #define CORRECTION_BITS 0
  29. #endif
  30. #if TUNE_PROGRAM_BUILD
  31. #define MAYBE_mul_basecase 1
  32. #define MAYBE_mul_toom22   1
  33. #define MAYBE_mul_toom33   1
  34. #define MAYBE_mul_toom44   1
  35. #define MAYBE_mul_toom8h   1
  36. #else
  37. #define MAYBE_mul_basecase
  38.   (MUL_TOOM8H_THRESHOLD < 8 * MUL_TOOM22_THRESHOLD)
  39. #define MAYBE_mul_toom22
  40.   (MUL_TOOM8H_THRESHOLD < 8 * MUL_TOOM33_THRESHOLD)
  41. #define MAYBE_mul_toom33
  42.   (MUL_TOOM8H_THRESHOLD < 8 * MUL_TOOM44_THRESHOLD)
  43. #define MAYBE_mul_toom44
  44.   (MUL_TOOM8H_THRESHOLD < 8 * MUL_TOOM6H_THRESHOLD)
  45. #define MAYBE_mul_toom8h
  46.   (MUL_FFT_THRESHOLD >= 8 * MUL_TOOM8H_THRESHOLD)
  47. #endif
  48. #define TOOM8H_MUL_N_REC(p, a, b, n, ws)
  49.   do {
  50.     if (MAYBE_mul_basecase
  51. && BELOW_THRESHOLD (n, MUL_TOOM22_THRESHOLD))
  52.       mpn_mul_basecase (p, a, n, b, n);
  53.     else if (MAYBE_mul_toom22
  54.      && BELOW_THRESHOLD (n, MUL_TOOM33_THRESHOLD))
  55.       mpn_toom22_mul (p, a, n, b, n, ws);
  56.     else if (MAYBE_mul_toom33
  57.      && BELOW_THRESHOLD (n, MUL_TOOM44_THRESHOLD))
  58.       mpn_toom33_mul (p, a, n, b, n, ws);
  59.     else if (MAYBE_mul_toom44
  60.      && BELOW_THRESHOLD (n, MUL_TOOM6H_THRESHOLD))
  61.       mpn_toom44_mul (p, a, n, b, n, ws);
  62.     else if (! MAYBE_mul_toom8h
  63.      || BELOW_THRESHOLD (n, MUL_TOOM8H_THRESHOLD))
  64.       mpn_toom6h_mul (p, a, n, b, n, ws);
  65.     else
  66.       mpn_toom8h_mul (p, a, n, b, n, ws);
  67.   } while (0)
  68. #define TOOM8H_MUL_REC(p, a, na, b, nb, ws)
  69.   do { mpn_mul (p, a, na, b, nb);
  70.   } while (0)
  71. /* Toom-8.5 , compute the product {pp,an+bn} <- {ap,an} * {bp,bn}
  72.    With: an >= bn >= 86, an*5 <  bn * 11.
  73.    It _may_ work with bn<=?? and bn*?? < an*? < bn*??
  74.    Evaluate in: infinity, +8,-8,+4,-4,+2,-2,+1,-1,+1/2,-1/2,+1/4,-1/4,+1/8,-1/8,0.
  75. */
  76. /* Estimate on needed scratch:
  77.    S(n) <= (n+7)8*13+5+MAX(S((n+7)8),1+2*(n+7)8),
  78.    since n>80; S(n) <= ceil(log(n/10)/log(8))*(13+5)+n*158 < n*158 + lg2(n)*6
  79.  */
  80. void
  81. mpn_toom8h_mul   (mp_ptr pp,
  82.   mp_srcptr ap, mp_size_t an,
  83.   mp_srcptr bp, mp_size_t bn, mp_ptr scratch)
  84. {
  85.   mp_size_t n, s, t;
  86.   int p, q, half;
  87.   int sign;
  88.   /***************************** decomposition *******************************/
  89.   ASSERT (an >= bn);
  90.   /* Can not handle too small operands */
  91.   ASSERT (bn >= 86);
  92.   /* Can not handle too much unbalancement */
  93.   ASSERT (an*4 <= bn*13);
  94.   ASSERT (GMP_NUMB_BITS > 12*3 || an*4 <= bn*12);
  95.   ASSERT (GMP_NUMB_BITS > 11*3 || an*5 <= bn*11);
  96.   ASSERT (GMP_NUMB_BITS > 10*3 || an*6 <= bn*10);
  97.   ASSERT (GMP_NUMB_BITS >  9*3 || an*7 <= bn* 9);
  98.   /* Limit num/den is a rational number between
  99.      (16/15)^(log(6)/log(2*6-1)) and (16/15)^(log(8)/log(2*8-1))             */
  100. #define LIMIT_numerator (21)
  101. #define LIMIT_denominat (20)
  102.   if (LIKELY (an == bn) || an * (LIMIT_denominat>>1) < LIMIT_numerator * (bn>>1) ) /* is 8*... < 8*... */
  103.     {
  104.       half = 0;
  105.       n = 1 + ((an - 1)>>3);
  106.       p = q = 7;
  107.       s = an - p * n;
  108.       t = bn - q * n;
  109.     }
  110.   else
  111.     {
  112.       if (an * 13 < 16 * bn) /* (an*7*LIMIT_numerator<LIMIT_denominat*9*bn) */
  113. { p = 9; q = 8; }
  114.       else if (GMP_NUMB_BITS <= 9*3 ||
  115.        an *(LIMIT_denominat>>1) < (LIMIT_numerator/7*9) * (bn>>1))
  116. { p = 9; q = 7; }
  117.       else if (an * 10 < 33 * (bn>>1)) /* (an*3*LIMIT_numerator<LIMIT_denominat*5*bn) */
  118. { p =10; q = 7; }
  119.       else if (GMP_NUMB_BITS <= 10*3 ||
  120.        an * (LIMIT_denominat/5) < (LIMIT_numerator/3) * bn)
  121. { p =10; q = 6; }
  122.       else if (an * 6 < 13 * bn) /*(an * 5 * LIMIT_numerator < LIMIT_denominat *11 * bn)*/
  123. { p =11; q = 6; }
  124.       else if (GMP_NUMB_BITS <= 11*3 ||
  125.        an * 4 < 9 * bn)
  126. { p =11; q = 5; }
  127.       else if (an *(LIMIT_numerator/3) < LIMIT_denominat * bn )  /* is 4*... <12*... */
  128. { p =12; q = 5; }
  129.       else if (GMP_NUMB_BITS <= 12*3 ||
  130.        an * 9 < 28 * bn )  /* is 4*... <12*... */
  131. { p =12; q = 4; }
  132.       else
  133. { p =13; q = 4; }
  134.       half = (p+q)&1;
  135.       n = 1 + (q * an >= p * bn ? (an - 1) / (size_t) p : (bn - 1) / (size_t) q);
  136.       p--; q--;
  137.       s = an - p * n;
  138.       t = bn - q * n;
  139.       if(half) { /* Recover from badly chosen splitting */
  140. if (s<1) {p--; s+=n; half=0;}
  141. else if (t<1) {q--; t+=n; half=0;}
  142.       }
  143.     }
  144. #undef LIMIT_numerator
  145. #undef LIMIT_denominat
  146.   ASSERT (0 < s && s <= n);
  147.   ASSERT (0 < t && t <= n);
  148.   ASSERT (half || s + t > 3);
  149.   ASSERT (n > 2);
  150. #define   r6    (pp + 3 * n) /* 3n+1 */
  151. #define   r4    (pp + 7 * n) /* 3n+1 */
  152. #define   r2    (pp +11 * n) /* 3n+1 */
  153. #define   r0    (pp +15 * n) /* s+t <= 2*n */
  154. #define   r7    (scratch) /* 3n+1 */
  155. #define   r5    (scratch + 3 * n + 1) /* 3n+1 */
  156. #define   r3    (scratch + 6 * n + 2) /* 3n+1 */
  157. #define   r1    (scratch + 9 * n + 3) /* 3n+1 */
  158. #define   v0    (pp +11 * n) /* n+1 */
  159. #define   v1    (pp +12 * n+1) /* n+1 */
  160. #define   v2    (pp +13 * n+2) /* n+1 */
  161. #define   v3    (scratch +12 * n + 4) /* n+1 */
  162. #define   wsi   (scratch +12 * n + 4) /* 3n+1 */
  163. #define   wse   (scratch +13 * n + 5) /* 2n+1 */
  164.   /* Alloc also 3n+1 limbs for wsi... toom_interpolate_16pts may
  165.      need all of them  */
  166. /*   if (scratch == NULL) */
  167. /*     scratch = TMP_SALLOC_LIMBS(mpn_toom8_sqr_itch(n * 8)); */
  168.   ASSERT (15 * n + 6 <= mpn_toom8h_mul_itch (an, bn));
  169.   ASSERT (15 * n + 6 <= mpn_toom8_sqr_itch (n * 8));
  170.   /********************** evaluation and recursive calls *********************/
  171.   /* $pm1/8$ */
  172.   sign = mpn_toom_eval_pm2rexp (v2, v0, p, ap, n, s, 3, pp) ^
  173.  mpn_toom_eval_pm2rexp (v3, v1, q, bp, n, t, 3, pp);
  174.   TOOM8H_MUL_N_REC(pp, v0, v1, n + 1, wse); /* A(-1/8)*B(-1/8)*8^. */
  175.   TOOM8H_MUL_N_REC(r7, v2, v3, n + 1, wse); /* A(+1/8)*B(+1/8)*8^. */
  176.   mpn_toom_couple_handling (r7, 2 * n + 1 + BIT_CORRECTION, pp, sign, n, 3*(1+half), 3*(half));
  177.   /* $pm1/4$ */
  178.   sign = mpn_toom_eval_pm2rexp (v2, v0, p, ap, n, s, 2, pp) ^
  179.  mpn_toom_eval_pm2rexp (v3, v1, q, bp, n, t, 2, pp);
  180.   TOOM8H_MUL_N_REC(pp, v0, v1, n + 1, wse); /* A(-1/4)*B(-1/4)*4^. */
  181.   TOOM8H_MUL_N_REC(r5, v2, v3, n + 1, wse); /* A(+1/4)*B(+1/4)*4^. */
  182.   mpn_toom_couple_handling (r5, 2 * n + 1, pp, sign, n, 2*(1+half), 2*(half));
  183.   /* $pm2$ */
  184.   sign = mpn_toom_eval_pm2 (v2, v0, p, ap, n, s, pp) ^
  185.  mpn_toom_eval_pm2 (v3, v1, q, bp, n, t, pp);
  186.   TOOM8H_MUL_N_REC(pp, v0, v1, n + 1, wse); /* A(-2)*B(-2) */
  187.   TOOM8H_MUL_N_REC(r3, v2, v3, n + 1, wse); /* A(+2)*B(+2) */
  188.   mpn_toom_couple_handling (r3, 2 * n + 1, pp, sign, n, 1, 2);
  189.   /* $pm8$ */
  190.   sign = mpn_toom_eval_pm2exp (v2, v0, p, ap, n, s, 3, pp) ^
  191.  mpn_toom_eval_pm2exp (v3, v1, q, bp, n, t, 3, pp);
  192.   TOOM8H_MUL_N_REC(pp, v0, v1, n + 1, wse); /* A(-8)*B(-8) */
  193.   TOOM8H_MUL_N_REC(r1, v2, v3, n + 1, wse); /* A(+8)*B(+8) */
  194.   mpn_toom_couple_handling (r1, 2 * n + 1 + BIT_CORRECTION, pp, sign, n, 3, 6);
  195.   /* $pm1/2$ */
  196.   sign = mpn_toom_eval_pm2rexp (v2, v0, p, ap, n, s, 1, pp) ^
  197.  mpn_toom_eval_pm2rexp (v3, v1, q, bp, n, t, 1, pp);
  198.   TOOM8H_MUL_N_REC(pp, v0, v1, n + 1, wse); /* A(-1/2)*B(-1/2)*2^. */
  199.   TOOM8H_MUL_N_REC(r6, v2, v3, n + 1, wse); /* A(+1/2)*B(+1/2)*2^. */
  200.   mpn_toom_couple_handling (r6, 2 * n + 1, pp, sign, n, 1+half, half);
  201.   /* $pm1$ */
  202.   sign = mpn_toom_eval_pm1 (v2, v0, p, ap, n, s,    pp);
  203.   if (q == 3)
  204.     sign ^= mpn_toom_eval_dgr3_pm1 (v3, v1, bp, n, t,    pp);
  205.   else
  206.     sign ^= mpn_toom_eval_pm1 (v3, v1, q, bp, n, t,    pp);
  207.   TOOM8H_MUL_N_REC(pp, v0, v1, n + 1, wse); /* A(-1)*B(-1) */
  208.   TOOM8H_MUL_N_REC(r4, v2, v3, n + 1, wse); /* A(1)*B(1) */
  209.   mpn_toom_couple_handling (r4, 2 * n + 1, pp, sign, n, 0, 0);
  210.   /* $pm4$ */
  211.   sign = mpn_toom_eval_pm2exp (v2, v0, p, ap, n, s, 2, pp) ^
  212.  mpn_toom_eval_pm2exp (v3, v1, q, bp, n, t, 2, pp);
  213.   TOOM8H_MUL_N_REC(pp, v0, v1, n + 1, wse); /* A(-4)*B(-4) */
  214.   TOOM8H_MUL_N_REC(r2, v2, v3, n + 1, wse); /* A(+4)*B(+4) */
  215.   mpn_toom_couple_handling (r2, 2 * n + 1, pp, sign, n, 2, 4);
  216. #undef v0
  217. #undef v1
  218. #undef v2
  219. #undef v3
  220. #undef wse
  221.   /* A(0)*B(0) */
  222.   TOOM8H_MUL_N_REC(pp, ap, bp, n, wsi);
  223.   /* Infinity */
  224.   if( half != 0) {
  225.     if(s>t) {
  226.       TOOM8H_MUL_REC(r0, ap + p * n, s, bp + q * n, t, wsi);
  227.     } else {
  228.       TOOM8H_MUL_REC(r0, bp + q * n, t, ap + p * n, s, wsi);
  229.     };
  230.   };
  231.   mpn_toom_interpolate_16pts (pp, r1, r3, r5, r7, n, s+t, half, wsi);
  232. #undef r0
  233. #undef r1
  234. #undef r2
  235. #undef r3
  236. #undef r4
  237. #undef r5
  238. #undef r6
  239. #undef wsi
  240. }
  241. #undef TOOM8H_MUL_N_REC
  242. #undef TOOM8H_MUL_REC
  243. #undef MAYBE_mul_basecase
  244. #undef MAYBE_mul_toom22
  245. #undef MAYBE_mul_toom33
  246. #undef MAYBE_mul_toom44
  247. #undef MAYBE_mul_toom8h