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

数学计算

开发平台:

Unix_Linux

  1. Copyright 2002 Free Software Foundation, Inc.
  2. This file is part of the GNU MP Library.
  3. The GNU MP Library is free software; you can redistribute it and/or modify it
  4. under the terms of the GNU Lesser General Public License as published by the
  5. Free Software Foundation; either version 3 of the License, or (at your option)
  6. any later version.
  7. The GNU MP Library is distributed in the hope that it will be useful, but
  8. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  9. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
  10. for more details.
  11. You should have received a copy of the GNU Lesser General Public License along
  12. with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  13. This directory contains mpn functions for ARM processors.
  14. It has been optimized for StrongARM.
  15. TODO
  16. Write mpn_addmul_2.  The speed of mpn_addmul_1 is 9.75 c/l;
  17. mpn_addmul_2 could run at 8 c/l.  mpn_addmul_N could
  18. approach 6 c/l, but register shortage will make this hard.
  19. Perhaps nails is the way to go even for an embedded processor like
  20. this, since the umlal accumulation could be used very effectively in
  21. that case.  with just 2 nail bits, we should get close to 5 c/l for a
  22. mpn_addmul_N or mpn_mul_basecase.