forked from FFTW/fftw3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhc2hc-dit.c
161 lines (136 loc) · 4.26 KB
/
hc2hc-dit.c
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
/*
* Copyright (c) 2003 Matteo Frigo
* Copyright (c) 2003 Massachusetts Institute of Technology
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
/* $Id: hc2hc-dit.c,v 1.10 2003-03-15 20:29:43 stevenj Exp $ */
/* decimation in time Cooley-Tukey, with codelet divided among threads */
#include "threads.h"
#include "hc2hc.h"
typedef struct {
plan_hc2hc super;
int nthr;
int mloop;
int sW;
} P;
typedef struct {
R *ro, *io;
khc2hc k;
R *W;
int sW;
stride ios;
int os;
} PD;
static void *spawn_apply(spawn_data *d)
{
PD *ego = (PD *) d->data;
int min = d->min, max = d->max;
int os = ego->os;
ego->k(ego->ro + min * os, ego->io - min * os,
ego->W + min * ego->sW, ego->ios, 2 * (max - min) + 1, os);
return 0;
}
static void apply(const plan *ego_, R *I, R *O)
{
const plan_hc2hc *ego = (const plan_hc2hc *) ego_;
/* two-dimensional r x vl sub-transform: */
{
plan_rdft *cld = (plan_rdft *) ego->cld;
cld->apply((plan *) cld, I, O);
}
{
plan_rdft *cld0 = (plan_rdft *) ego->cld0;
cld0->apply((plan *) cld0, O, O);
}
{
plan_rdft *cldm = (plan_rdft *) ego->cldm;
int r = ego->r, m = ego->m;
int os = ego->os;
const P *ego_thr = (const P *) ego_;
PD d;
cldm->apply((plan *) cldm, O + os*(m/2), O + os*(m/2));
d.ro = O + os; d.io = O + (r * m - 1) * os;
d.k = ego->k;
d.W = ego->W;
d.sW = ego_thr->sW;
d.ios = ego->ios;
d.os = ego->os;
X(spawn_loop)(ego_thr->mloop, ego_thr->nthr, spawn_apply, (void*)&d);
}
}
static int applicable0(const solver_hc2hc *ego, const problem *p_,
const planner *plnr)
{
if (plnr->nthr > 1 && X(rdft_hc2hc_applicable)(ego, p_)) {
const hc2hc_desc *e = ego->desc;
const problem_rdft *p = (const problem_rdft *) p_;
iodim *d = p->sz->dims;
int m = d[0].n / e->radix;
return (1
&& p->vecsz->rnk == 0
&& ((m-1)/2) / e->genus->vl > 1
&& (e->genus->okp(e, p->O + d[0].os,
p->O + (e->radix * m - 1) * d[0].os,
(int)m * d[0].os, 0, m, d[0].os))
);
}
return 0;
}
static int applicable(const solver_hc2hc *ego, const problem *p_,
const planner *plnr)
{
const problem_rdft *p;
if (!applicable0(ego, p_, plnr)) return 0;
p = (const problem_rdft *) p_;
if (NO_UGLYP(plnr) && X(ct_uglyp)(16, p->sz->dims[0].n, ego->desc->radix))
return 0;
return 1;
}
static void finish(plan_hc2hc *ego)
{
const hc2hc_desc *d = ego->slv->desc;
opcnt t;
ego->ios = X(mkstride)(ego->r, ego->m * ego->os);
X(ops_add)(&ego->cld0->ops, &ego->cldm->ops, &t);
X(ops_madd)(ego->vl, &t, &ego->cld->ops, &ego->super.super.ops);
X(ops_madd2)(ego->vl * ((ego->m - 1)/2) / d->genus->vl, &d->ops,
&ego->super.super.ops);
}
static plan *mkplan(const solver *ego, const problem *p, planner *plnr)
{
plan *pln;
static const hc2hcadt adt = {
sizeof(P),
X(rdft_mkcldrn_dit), finish, applicable, apply
};
pln = X(mkplan_rdft_hc2hc)((const solver_hc2hc *) ego, p, plnr, &adt);
if (pln) {
P *pln_thr = (P *) pln;
pln_thr->nthr = plnr->nthr;
pln_thr->mloop =
((pln_thr->super.m-1)/2) / pln_thr->super.slv->desc->genus->vl;
pln_thr->sW = X(twiddle_length)(pln_thr->super.r,
pln_thr->super.slv->desc->tw);
}
return pln;
}
solver *X(mksolver_rdft_hc2hc_dit_thr)(khc2hc codelet, const hc2hc_desc *desc)
{
static const solver_adt sadt = { mkplan };
static const char name[] = "rdft-dit-thr";
return X(mksolver_rdft_hc2hc)(codelet, desc, name, &sadt);
}