File: wfac.c

package info (click to toggle)
python-ltfatpy 1.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 41,412 kB
  • sloc: ansic: 8,546; python: 6,470; makefile: 15
file content (200 lines) | stat: -rw-r--r-- 5,372 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
#include "ltfat.h"
#include "ltfat_types.h"

LTFAT_EXTERN void
LTFAT_NAME_COMPLEX(wfac)(const LTFAT_COMPLEX *g, const ltfatInt L, const ltfatInt R,
                         const ltfatInt a, const ltfatInt M,
                         LTFAT_COMPLEX *gf)
{
    ltfatInt h_a, h_m, s;

    LTFAT_REAL *sbuf, *gfp;

    ltfatInt rem, negrem;

    LTFAT_FFTW(plan) p_before;

    const ltfatInt b = L/M;

    const ltfatInt c=gcd(a, M,&h_a, &h_m);
    const ltfatInt p=a/c;
    const ltfatInt q=M/c;
    const ltfatInt d=b/p;

    const double sqrtM=sqrt(M);

    sbuf = (LTFAT_REAL*)ltfat_malloc(2*d*sizeof(LTFAT_REAL));

    /* Create plan. In-place. */
    p_before = LTFAT_FFTW(plan_dft_1d)(d, (LTFAT_COMPLEX*)sbuf, (LTFAT_COMPLEX*)sbuf,
                                       FFTW_FORWARD, FFTW_MEASURE);

    const ltfatInt ld3=c*p*q*R;
    gfp=(LTFAT_REAL*)gf;
    for (ltfatInt r=0; r<c; r++)
    {
        for (ltfatInt w=0; w<R; w++)
        {
            for (ltfatInt l=0; l<q; l++)
            {
                for (ltfatInt k=0; k<p; k++)
                {
                    negrem = positiverem(k*M-l*a,L);
                    for (s=0; s<d; s++)
                    {
                        rem = (negrem+s*p*M)%L;
                        sbuf[2*s]   = LTFAT_COMPLEXH(creal)(sqrtM*g[r+rem+L*w]);
                        sbuf[2*s+1] = LTFAT_COMPLEXH(cimag)(sqrtM*g[r+rem+L*w]);
                    }

                    LTFAT_FFTW(execute)(p_before);

                    for (s=0; s<2*d; s+=2)
                    {
                        gfp[s*ld3]  = sbuf[s];
                        gfp[s*ld3+1]= sbuf[s+1];
                    }
                    gfp+=2;
                }
            }
        }
    }

    ltfat_free(sbuf);
    LTFAT_FFTW(destroy_plan)(p_before);
}


/* wfac for real valued input. */
LTFAT_EXTERN void
LTFAT_NAME_REAL(wfac)(const LTFAT_REAL *g, const ltfatInt L, const ltfatInt R,
                      const ltfatInt a, const ltfatInt M,
                      LTFAT_COMPLEX *gf)
{

    ltfatInt h_a, h_m;

    LTFAT_REAL *sbuf, *gfp;

    ltfatInt s;
    ltfatInt rem, negrem;

    LTFAT_FFTW(plan) p_before;

    const ltfatInt b=L/M;
    const ltfatInt c=gcd(a, M,&h_a, &h_m);
    const ltfatInt p=a/c;
    const ltfatInt q=M/c;
    const ltfatInt d=b/p;

    const double sqrtM=sqrt(M);

    sbuf = (LTFAT_REAL*)ltfat_malloc(2*d*sizeof(LTFAT_REAL));

    /* Create plan. In-place. */
    p_before = LTFAT_FFTW(plan_dft_1d)(d, (LTFAT_COMPLEX*)sbuf,
                                       (LTFAT_COMPLEX*)sbuf,
                                       FFTW_FORWARD, FFTW_MEASURE);

    const ltfatInt ld3=c*p*q*R;
    gfp=(LTFAT_REAL*)gf;
    for (ltfatInt r=0; r<c; r++)
    {
        for (ltfatInt w=0; w<R; w++)
        {
            for (ltfatInt l=0; l<q; l++)
            {
                for (ltfatInt k=0; k<p; k++)
                {
                    negrem = positiverem(k*M-l*a,L);
                    for (s=0; s<d; s++)
                    {
                        rem = (negrem+s*p*M)%L;
                        sbuf[2*s]   = sqrtM*g[r+rem+L*w];
                        sbuf[2*s+1] = 0.0;
                    }

                    LTFAT_FFTW(execute)(p_before);

                    for (s=0; s<2*d; s+=2)
                    {
                        gfp[s*ld3]  = sbuf[s];
                        gfp[s*ld3+1]= sbuf[s+1];
                    }
                    gfp+=2;
                }
            }
        }
    }

    ltfat_free(sbuf);
    LTFAT_FFTW(destroy_plan)(p_before);
}

/* wfac for real valued input. Produces only half the output coefficients of wfac_r */
LTFAT_EXTERN void
LTFAT_NAME(wfacreal)(const LTFAT_REAL *g, const ltfatInt L, const ltfatInt R,
                     const ltfatInt a, const ltfatInt M,
                     LTFAT_COMPLEX *gf)
{

    ltfatInt h_a, h_m;

    //LTFAT_REAL *gfp;
    LTFAT_COMPLEX *gfp = gf;

    ltfatInt s;
    ltfatInt rem, negrem;

    LTFAT_FFTW(plan) p_before;

    const ltfatInt b=L/M;
    const ltfatInt c=gcd(a, M,&h_a, &h_m);
    const ltfatInt p=a/c;
    const ltfatInt q=M/c;
    const ltfatInt d=b/p;

    /* This is a floor operation. */
    const ltfatInt d2= d/2+1;

    const double sqrtM=sqrt(M);

    LTFAT_REAL *sbuf = (LTFAT_REAL*)ltfat_malloc(d*sizeof(LTFAT_REAL));
    LTFAT_COMPLEX *cbuf = (LTFAT_COMPLEX*)ltfat_malloc(d2*sizeof(LTFAT_COMPLEX));

    /* Create plan. In-place. */
    p_before = LTFAT_FFTW(plan_dft_r2c_1d)(d, sbuf, cbuf, FFTW_MEASURE);

    // const ltfatInt ld3=2*c*p*q*R;
    const ltfatInt ld3=c*p*q*R;
    //gfp=(LTFAT_REAL*)gf;
    for (ltfatInt r=0; r<c; r++)
    {
        for (ltfatInt w=0; w<R; w++)
        {
            for (ltfatInt l=0; l<q; l++)
            {
                for (ltfatInt k=0; k<p; k++)
                {
                    negrem = positiverem(k*M-l*a,L);
                    for (s=0; s<d; s++)
                    {
                        rem = (negrem+s*p*M)%L;
                        sbuf[s]   = sqrtM*g[r+rem+L*w];
                    }

                    LTFAT_FFTW(execute)(p_before);

                    for (s=0; s<d2; s++)
                    {
                        gfp[s*ld3] = cbuf[s];
                    }
                    gfp++;
                }
            }
        }
    }

    LTFAT_SAFEFREEALL(sbuf,cbuf);
    LTFAT_FFTW(destroy_plan)(p_before);
}