[go: up one dir, main page]

File: frc_8.c

package info (click to toggle)
fftw 2.1.5-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,772 kB
  • sloc: ansic: 65,239; sh: 7,399; ml: 3,084; perl: 2,894; makefile: 380; fortran: 102
file content (116 lines) | stat: -rw-r--r-- 3,407 bytes parent folder | download | duplicates (5)
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
/*
 * Copyright (c) 1997-1999, 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
 *
 */

/* This file was automatically generated --- DO NOT EDIT */
/* Generated on Mon Mar 24 02:05:54 EST 2003 */

#include "fftw-int.h"
#include "fftw.h"

/* Generated by: /homee/stevenj/cvs/fftw/gensrc/genfft -magic-alignment-check -magic-twiddle-load-all -magic-variables 4 -magic-loopi -real2hc 8 */

/*
 * This function contains 20 FP additions, 2 FP multiplications,
 * (or, 20 additions, 2 multiplications, 0 fused multiply/add),
 * 12 stack variables, and 16 memory accesses
 */
static const fftw_real K707106781 =
FFTW_KONST(+0.707106781186547524400844362104849039284835938);

/*
 * Generator Id's : 
 * $Id: exprdag.ml,v 1.43 2003/03/16 23:43:46 stevenj Exp $
 * $Id: fft.ml,v 1.44 2003/03/16 23:43:46 stevenj Exp $
 * $Id: to_c.ml,v 1.26 2003/03/16 23:43:46 stevenj Exp $
 */

void fftw_real2hc_8(const fftw_real *input, fftw_real *real_output,
		    fftw_real *imag_output, int istride, int real_ostride,
		    int imag_ostride)
{
     fftw_real tmp3;
     fftw_real tmp7;
     fftw_real tmp13;
     fftw_real tmp19;
     fftw_real tmp6;
     fftw_real tmp16;
     fftw_real tmp10;
     fftw_real tmp18;
     ASSERT_ALIGNED_DOUBLE;
     {
	  fftw_real tmp1;
	  fftw_real tmp2;
	  fftw_real tmp11;
	  fftw_real tmp12;
	  ASSERT_ALIGNED_DOUBLE;
	  tmp1 = input[0];
	  tmp2 = input[4 * istride];
	  tmp3 = tmp1 + tmp2;
	  tmp7 = tmp1 - tmp2;
	  tmp11 = input[7 * istride];
	  tmp12 = input[3 * istride];
	  tmp13 = tmp11 - tmp12;
	  tmp19 = tmp11 + tmp12;
     }
     {
	  fftw_real tmp4;
	  fftw_real tmp5;
	  fftw_real tmp8;
	  fftw_real tmp9;
	  ASSERT_ALIGNED_DOUBLE;
	  tmp4 = input[2 * istride];
	  tmp5 = input[6 * istride];
	  tmp6 = tmp4 + tmp5;
	  tmp16 = tmp4 - tmp5;
	  tmp8 = input[istride];
	  tmp9 = input[5 * istride];
	  tmp10 = tmp8 - tmp9;
	  tmp18 = tmp8 + tmp9;
     }
     {
	  fftw_real tmp17;
	  fftw_real tmp20;
	  fftw_real tmp14;
	  fftw_real tmp15;
	  ASSERT_ALIGNED_DOUBLE;
	  real_output[2 * real_ostride] = tmp3 - tmp6;
	  tmp17 = tmp3 + tmp6;
	  tmp20 = tmp18 + tmp19;
	  real_output[4 * real_ostride] = tmp17 - tmp20;
	  real_output[0] = tmp17 + tmp20;
	  imag_output[2 * imag_ostride] = tmp19 - tmp18;
	  tmp14 = K707106781 * (tmp10 + tmp13);
	  real_output[3 * real_ostride] = tmp7 - tmp14;
	  real_output[real_ostride] = tmp7 + tmp14;
	  tmp15 = K707106781 * (tmp13 - tmp10);
	  imag_output[imag_ostride] = tmp15 - tmp16;
	  imag_output[3 * imag_ostride] = tmp16 + tmp15;
     }
}

fftw_codelet_desc fftw_real2hc_8_desc = {
     "fftw_real2hc_8",
     (void (*)()) fftw_real2hc_8,
     8,
     FFTW_FORWARD,
     FFTW_REAL2HC,
     178,
     0,
     (const int *) 0,
};