2012-01-04 18:48:12 -05:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright 2009, 2011 William Hart. All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without modification, are
|
|
|
|
permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
1. Redistributions of source code must retain the above copyright notice, this list of
|
|
|
|
conditions and the following disclaimer.
|
|
|
|
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
|
|
of conditions and the following disclaimer in the documentation and/or other materials
|
|
|
|
provided with the distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY William Hart ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL William Hart OR
|
|
|
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
|
|
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
The views and conclusions contained in the software and documentation are those of the
|
|
|
|
authors and should not be interpreted as representing official policies, either expressed
|
|
|
|
or implied, of William Hart.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "mpir.h"
|
|
|
|
#include "gmp-impl.h"
|
|
|
|
|
2012-10-18 12:29:08 -04:00
|
|
|
void mpir_ifft_butterfly_sqrt2(mp_ptr s, mp_ptr t, mp_ptr i1,
|
2012-01-17 10:13:24 -05:00
|
|
|
mp_ptr i2, mp_size_t i, mp_size_t limbs, mp_bitcnt_t w, mp_ptr temp)
|
2012-01-04 18:48:12 -05:00
|
|
|
{
|
|
|
|
mp_bitcnt_t wn = limbs*GMP_LIMB_BITS;
|
2012-01-10 04:10:27 -05:00
|
|
|
mp_limb_t cy = 0;
|
2012-01-04 18:48:12 -05:00
|
|
|
mp_size_t j = i/2, k = w/2;
|
|
|
|
mp_size_t y2, y;
|
|
|
|
mp_size_t b1;
|
|
|
|
int negate = 1;
|
|
|
|
|
|
|
|
b1 = wn - j - i*k - 1 + wn/4;
|
|
|
|
if (b1 >= wn)
|
|
|
|
{
|
|
|
|
negate = 0;
|
|
|
|
b1 -= wn;
|
|
|
|
}
|
|
|
|
y2 = b1/GMP_LIMB_BITS;
|
|
|
|
b1 = b1%GMP_LIMB_BITS;
|
|
|
|
|
|
|
|
/* multiply by small part of 2^{2*wn - j - ik - 1 + wn/4} */
|
|
|
|
if (b1) mpn_mul_2expmod_2expp1(i2, i2, limbs, b1);
|
|
|
|
|
|
|
|
/* multiply by 2^{wn/2} */
|
|
|
|
y = limbs/2;
|
2012-01-10 04:10:27 -05:00
|
|
|
|
2012-01-04 18:48:12 -05:00
|
|
|
mpn_copyi(temp + y, i2, limbs - y);
|
|
|
|
temp[limbs] = 0;
|
2012-01-10 04:10:27 -05:00
|
|
|
if (y) cy = mpn_neg_n(temp, i2 + limbs - y, y);
|
2012-01-04 18:48:12 -05:00
|
|
|
mpn_addmod_2expp1_1(temp + y, limbs - y, -i2[limbs]);
|
|
|
|
mpn_sub_1(temp + y, temp + y, limbs - y + 1, cy);
|
|
|
|
|
|
|
|
/* shift by an additional half limb (rare) */
|
|
|
|
if (limbs & 1)
|
|
|
|
mpn_mul_2expmod_2expp1(temp, temp, limbs, GMP_LIMB_BITS/2);
|
|
|
|
|
|
|
|
/* subtract and negate... */
|
|
|
|
if (negate) mpn_sub_n(i2, temp, i2, limbs + 1);
|
|
|
|
else mpn_sub_n(i2, i2, temp, limbs + 1);
|
|
|
|
|
|
|
|
/* ...negate and shift **left** by y2 limbs (i.e. shift right by
|
|
|
|
(size - y2) limbs) and sumdiff */
|
2012-10-18 12:29:08 -04:00
|
|
|
mpir_butterfly_rshB(s, t, i1, i2, limbs, 0, limbs - y2);
|
2012-01-04 18:48:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-18 12:29:08 -04:00
|
|
|
void mpir_ifft_trunc_sqrt2(mp_ptr * ii, mp_size_t n, mp_bitcnt_t w,
|
2012-01-17 10:13:24 -05:00
|
|
|
mp_ptr * t1, mp_ptr * t2, mp_ptr * temp, mp_size_t trunc)
|
2012-01-04 18:48:12 -05:00
|
|
|
{
|
|
|
|
mp_size_t i;
|
|
|
|
mp_size_t limbs = (w*n)/GMP_LIMB_BITS;
|
|
|
|
|
|
|
|
if ((w & 1) == 0)
|
|
|
|
{
|
2012-10-18 12:29:08 -04:00
|
|
|
mpir_ifft_trunc(ii, 2*n, w/2, t1, t2, trunc);
|
2012-01-04 18:48:12 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-10-18 12:29:08 -04:00
|
|
|
mpir_ifft_radix2(ii, n, w, t1, t2);
|
2012-01-04 18:48:12 -05:00
|
|
|
|
|
|
|
for (i = trunc - 2*n; i < 2*n; i++)
|
|
|
|
{
|
2012-10-18 12:29:08 -04:00
|
|
|
mpir_fft_adjust(ii[i+2*n], ii[i], i/2, limbs, w);
|
2012-01-04 18:48:12 -05:00
|
|
|
|
|
|
|
i++;
|
|
|
|
|
2012-10-18 12:29:08 -04:00
|
|
|
mpir_fft_adjust_sqrt2(ii[i+2*n], ii[i], i, limbs, w, *temp);
|
2012-01-04 18:48:12 -05:00
|
|
|
}
|
|
|
|
|
2012-10-18 12:29:08 -04:00
|
|
|
mpir_ifft_trunc1(ii + 2*n, n, w, t1, t2, trunc - 2*n);
|
2012-01-04 18:48:12 -05:00
|
|
|
|
|
|
|
for (i = 0; i < trunc - 2*n; i++)
|
|
|
|
{
|
2012-10-18 12:29:08 -04:00
|
|
|
mpir_ifft_butterfly(*t1, *t2, ii[i], ii[2*n+i], i/2, limbs, w);
|
2012-01-04 18:48:12 -05:00
|
|
|
|
|
|
|
MP_PTR_SWAP(ii[i], *t1);
|
|
|
|
MP_PTR_SWAP(ii[2*n+i], *t2);
|
|
|
|
|
|
|
|
i++;
|
|
|
|
|
2012-10-18 12:29:08 -04:00
|
|
|
mpir_ifft_butterfly_sqrt2(*t1, *t2, ii[i], ii[2*n+i], i, limbs, w, *temp);
|
2012-01-04 18:48:12 -05:00
|
|
|
|
|
|
|
MP_PTR_SWAP(ii[i], *t1);
|
|
|
|
MP_PTR_SWAP(ii[2*n+i], *t2);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = trunc - 2*n; i < 2*n; i++)
|
|
|
|
mpn_add_n(ii[i], ii[i], ii[i], limbs + 1);
|
|
|
|
}
|