cannam@127
|
1 /*
|
cannam@127
|
2 * Copyright (c) 2003, 2007-14 Matteo Frigo
|
cannam@127
|
3 * Copyright (c) 2003, 2007-14 Massachusetts Institute of Technology
|
cannam@127
|
4 *
|
cannam@127
|
5 * This program is free software; you can redistribute it and/or modify
|
cannam@127
|
6 * it under the terms of the GNU General Public License as published by
|
cannam@127
|
7 * the Free Software Foundation; either version 2 of the License, or
|
cannam@127
|
8 * (at your option) any later version.
|
cannam@127
|
9 *
|
cannam@127
|
10 * This program is distributed in the hope that it will be useful,
|
cannam@127
|
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
cannam@127
|
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
cannam@127
|
13 * GNU General Public License for more details.
|
cannam@127
|
14 *
|
cannam@127
|
15 * You should have received a copy of the GNU General Public License
|
cannam@127
|
16 * along with this program; if not, write to the Free Software
|
cannam@127
|
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
cannam@127
|
18 *
|
cannam@127
|
19 */
|
cannam@127
|
20
|
cannam@127
|
21
|
cannam@127
|
22 #include "ifftw.h"
|
cannam@127
|
23
|
cannam@127
|
24 tensor *X(mktensor_2d)(INT n0, INT is0, INT os0,
|
cannam@127
|
25 INT n1, INT is1, INT os1)
|
cannam@127
|
26 {
|
cannam@127
|
27 tensor *x = X(mktensor)(2);
|
cannam@127
|
28 x->dims[0].n = n0;
|
cannam@127
|
29 x->dims[0].is = is0;
|
cannam@127
|
30 x->dims[0].os = os0;
|
cannam@127
|
31 x->dims[1].n = n1;
|
cannam@127
|
32 x->dims[1].is = is1;
|
cannam@127
|
33 x->dims[1].os = os1;
|
cannam@127
|
34 return x;
|
cannam@127
|
35 }
|
cannam@127
|
36
|
cannam@127
|
37
|
cannam@127
|
38 tensor *X(mktensor_3d)(INT n0, INT is0, INT os0,
|
cannam@127
|
39 INT n1, INT is1, INT os1,
|
cannam@127
|
40 INT n2, INT is2, INT os2)
|
cannam@127
|
41 {
|
cannam@127
|
42 tensor *x = X(mktensor)(3);
|
cannam@127
|
43 x->dims[0].n = n0;
|
cannam@127
|
44 x->dims[0].is = is0;
|
cannam@127
|
45 x->dims[0].os = os0;
|
cannam@127
|
46 x->dims[1].n = n1;
|
cannam@127
|
47 x->dims[1].is = is1;
|
cannam@127
|
48 x->dims[1].os = os1;
|
cannam@127
|
49 x->dims[2].n = n2;
|
cannam@127
|
50 x->dims[2].is = is2;
|
cannam@127
|
51 x->dims[2].os = os2;
|
cannam@127
|
52 return x;
|
cannam@127
|
53 }
|