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

数学计算

开发平台:

Unix_Linux

  1. #define mpn_toomMN_mul mpn_toom8h_mul
  2. #define mpn_toomMN_mul_itch mpn_toom8h_mul_itch
  3. /* Smaller sizes not supported; may lead to recursive calls to
  4.    toom{22,33,44,6h}_mul with invalid input size. */
  5. #define MIN_AN MUL_TOOM8H_THRESHOLD
  6. #if GMP_NUMB_BITS <= 10*3
  7. #define MIN_BN(an) (MAX ((an*6)/10, 86) )
  8. #else
  9. #if GMP_NUMB_BITS <= 11*3
  10. #define MIN_BN(an) (MAX ((an*5)/11, 86) )
  11. #else
  12. #if GMP_NUMB_BITS <= 12*3
  13. #define MIN_BN(an) (MAX ((an*4)/12, 86) )
  14. #else
  15. #define MIN_BN(an) (MAX ((an*4)/13, 86) )
  16. #endif
  17. #endif
  18. #endif
  19. #include "toom-shared.h"