diff options
author | Kevin Ryde <user42@zip.com.au> | 2000-11-21 23:10:23 +0100 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2000-11-21 23:10:23 +0100 |
commit | 169202786501e2709c68bb10a83feaafc8c19a24 (patch) | |
tree | 33336370ed4939f3549721e281340b3ea402212c | |
parent | 19b66be50251fc3286e744cb32d30b9f5ce67d0f (diff) | |
download | gmp-169202786501e2709c68bb10a83feaafc8c19a24.tar.gz |
* tune/gcdexto{s,d}.c: New files, one step gcdext, single and double.
-rw-r--r-- | tune/gcdextod.c | 32 | ||||
-rw-r--r-- | tune/gcdextos.c | 32 |
2 files changed, 64 insertions, 0 deletions
diff --git a/tune/gcdextod.c b/tune/gcdextod.c new file mode 100644 index 000000000..c2687b704 --- /dev/null +++ b/tune/gcdextod.c @@ -0,0 +1,32 @@ +/* mpn/generic/gcdext.c forced to one double limb step. */ + +/* +Copyright 2000 Free Software Foundation, Inc. + +This file is part of the GNU MP Library. + +The GNU MP Library is free software; you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2.1 of the License, or (at your +option) any later version. + +The GNU MP Library is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +License for more details. + +You should have received a copy of the GNU Lesser General Public License +along with the GNU MP Library; see the file COPYING.LIB. If not, write to +the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, +MA 02111-1307, USA. +*/ + +#include "gmp.h" +#include "gmp-impl.h" + +#undef GCDEXT_THRESHOLD +#define GCDEXT_THRESHOLD 0 +#define WANT_GCDEXT_ONE_STEP 1 +#define __gmpn_gcdext mpn_gcdext_one_double + +#include "../mpn/generic/gcdext.c" diff --git a/tune/gcdextos.c b/tune/gcdextos.c new file mode 100644 index 000000000..25e191b1a --- /dev/null +++ b/tune/gcdextos.c @@ -0,0 +1,32 @@ +/* mpn/generic/gcdext.c forced to one single limb step. */ + +/* +Copyright 2000 Free Software Foundation, Inc. + +This file is part of the GNU MP Library. + +The GNU MP Library is free software; you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2.1 of the License, or (at your +option) any later version. + +The GNU MP Library is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +License for more details. + +You should have received a copy of the GNU Lesser General Public License +along with the GNU MP Library; see the file COPYING.LIB. If not, write to +the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, +MA 02111-1307, USA. +*/ + +#include "gmp.h" +#include "gmp-impl.h" + +#undef GCDEXT_THRESHOLD +#define GCDEXT_THRESHOLD MP_SIZE_T_MAX +#define WANT_GCDEXT_ONE_STEP 1 +#define __gmpn_gcdext mpn_gcdext_one_single + +#include "../mpn/generic/gcdext.c" |