forked from FFTW/fftw3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dft-problem.c
136 lines (121 loc) · 3.88 KB
/
dft-problem.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
/*
* Copyright (c) 2003, 2007-14 Matteo Frigo
* Copyright (c) 2003, 2007-14 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "mpi-dft.h"
static void destroy(problem *ego_)
{
problem_mpi_dft *ego = (problem_mpi_dft *) ego_;
XM(dtensor_destroy)(ego->sz);
MPI_Comm_free(&ego->comm);
X(ifree)(ego_);
}
static void hash(const problem *p_, md5 *m)
{
const problem_mpi_dft *p = (const problem_mpi_dft *) p_;
int i;
X(md5puts)(m, "mpi-dft");
X(md5int)(m, p->I == p->O);
/* don't include alignment -- may differ between processes
X(md5int)(m, X(ialignment_of)(p->I));
X(md5int)(m, X(ialignment_of)(p->O));
... note that applicability of MPI plans does not depend
on alignment (although optimality may, in principle). */
XM(dtensor_md5)(m, p->sz);
X(md5INT)(m, p->vn);
X(md5int)(m, p->sign);
X(md5int)(m, p->flags);
MPI_Comm_size(p->comm, &i); X(md5int)(m, i);
A(XM(md5_equal)(*m, p->comm));
}
static void print(const problem *ego_, printer *p)
{
const problem_mpi_dft *ego = (const problem_mpi_dft *) ego_;
int i;
p->print(p, "(mpi-dft %d %d %d ",
ego->I == ego->O,
X(ialignment_of)(ego->I),
X(ialignment_of)(ego->O));
XM(dtensor_print)(ego->sz, p);
p->print(p, " %D %d %d", ego->vn, ego->sign, ego->flags);
MPI_Comm_size(ego->comm, &i); p->print(p, " %d)", i);
}
static void zero(const problem *ego_)
{
const problem_mpi_dft *ego = (const problem_mpi_dft *) ego_;
R *I = ego->I;
INT i, N;
int my_pe;
MPI_Comm_rank(ego->comm, &my_pe);
N = 2 * ego->vn * XM(total_block)(ego->sz, IB, my_pe);
for (i = 0; i < N; ++i) I[i] = K(0.0);
}
static const problem_adt padt =
{
PROBLEM_MPI_DFT,
hash,
zero,
print,
destroy
};
problem *XM(mkproblem_dft)(const dtensor *sz, INT vn,
R *I, R *O,
MPI_Comm comm,
int sign,
unsigned flags)
{
problem_mpi_dft *ego =
(problem_mpi_dft *)X(mkproblem)(sizeof(problem_mpi_dft), &padt);
int n_pes;
A(XM(dtensor_validp)(sz) && FINITE_RNK(sz->rnk));
MPI_Comm_size(comm, &n_pes);
A(n_pes >= XM(num_blocks_total)(sz, IB)
&& n_pes >= XM(num_blocks_total)(sz, OB));
A(vn >= 0);
A(sign == -1 || sign == 1);
/* enforce pointer equality if untainted pointers are equal */
if (UNTAINT(I) == UNTAINT(O))
I = O = JOIN_TAINT(I, O);
ego->sz = XM(dtensor_canonical)(sz, 1);
ego->vn = vn;
ego->I = I;
ego->O = O;
ego->sign = sign;
/* canonicalize: replace TRANSPOSED_IN with TRANSPOSED_OUT by
swapping the first two dimensions (for rnk > 1) */
if ((flags & TRANSPOSED_IN) && ego->sz->rnk > 1) {
ddim dim0 = ego->sz->dims[0];
ego->sz->dims[0] = ego->sz->dims[1];
ego->sz->dims[1] = dim0;
flags &= ~TRANSPOSED_IN;
flags ^= TRANSPOSED_OUT;
}
ego->flags = flags;
MPI_Comm_dup(comm, &ego->comm);
return &(ego->super);
}
problem *XM(mkproblem_dft_d)(dtensor *sz, INT vn,
R *I, R *O,
MPI_Comm comm,
int sign,
unsigned flags)
{
problem *p = XM(mkproblem_dft)(sz, vn, I, O, comm, sign, flags);
XM(dtensor_destroy)(sz);
return p;
}