~ubuntu-branches/ubuntu/maverick/blender/maverick

« back to all changes in this revision

Viewing changes to extern/fftw/rdft/codelets/r2hc/r2hc_5.c

  • Committer: Bazaar Package Importer
  • Author(s): Khashayar Naderehvandi, Khashayar Naderehvandi, Alessio Treglia
  • Date: 2009-01-22 16:53:59 UTC
  • mfrom: (14.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090122165359-v0996tn7fbit64ni
Tags: 2.48a+dfsg-1ubuntu1
[ Khashayar Naderehvandi ]
* Merge from debian experimental (LP: #320045), Ubuntu remaining changes:
  - Add patch correcting header file locations.
  - Add libvorbis-dev and libgsm1-dev to Build-Depends.
  - Use avcodec_decode_audio2() in source/blender/src/hddaudio.c

[ Alessio Treglia ]
* Add missing previous changelog entries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2003, 2006 Matteo Frigo
 
3
 * Copyright (c) 2003, 2006 Massachusetts Institute of Technology
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation; either version 2 of the License, or
 
8
 * (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
 *
 
19
 */
 
20
 
 
21
/* This file was automatically generated --- DO NOT EDIT */
 
22
/* Generated on Sun Jul  2 14:18:40 EDT 2006 */
 
23
 
 
24
#include "codelet-rdft.h"
 
25
 
 
26
#ifdef HAVE_FMA
 
27
 
 
28
/* Generated by: ../../../genfft/gen_r2hc -fma -reorder-insns -schedule-for-pipeline -compact -variables 4 -pipeline-latency 4 -n 5 -name r2hc_5 -include r2hc.h */
 
29
 
 
30
/*
 
31
 * This function contains 12 FP additions, 7 FP multiplications,
 
32
 * (or, 7 additions, 2 multiplications, 5 fused multiply/add),
 
33
 * 17 stack variables, and 10 memory accesses
 
34
 */
 
35
/*
 
36
 * Generator Id's : 
 
37
 * $Id: algsimp.ml,v 1.9 2006-02-12 23:34:12 athena Exp $
 
38
 * $Id: fft.ml,v 1.4 2006-01-05 03:04:27 stevenj Exp $
 
39
 * $Id: gen_r2hc.ml,v 1.18 2006-02-12 23:34:12 athena Exp $
 
40
 */
 
41
 
 
42
#include "r2hc.h"
 
43
 
 
44
static void r2hc_5(const R *I, R *ro, R *io, stride is, stride ros, stride ios, INT v, INT ivs, INT ovs)
 
45
{
 
46
     DK(KP559016994, +0.559016994374947424102293417182819058860154590);
 
47
     DK(KP250000000, +0.250000000000000000000000000000000000000000000);
 
48
     DK(KP618033988, +0.618033988749894848204586834365638117720309180);
 
49
     DK(KP951056516, +0.951056516295153572116439333379382143405698634);
 
50
     INT i;
 
51
     for (i = v; i > 0; i = i - 1, I = I + ivs, ro = ro + ovs, io = io + ovs, MAKE_VOLATILE_STRIDE(is), MAKE_VOLATILE_STRIDE(ros), MAKE_VOLATILE_STRIDE(ios)) {
 
52
          E T7, T1, T2, T4, T5;
 
53
          T7 = I[0];
 
54
          T1 = I[WS(is, 4)];
 
55
          T2 = I[WS(is, 1)];
 
56
          T4 = I[WS(is, 2)];
 
57
          T5 = I[WS(is, 3)];
 
58
          {
 
59
               E T3, T8, T6, T9, Tc, Ta, Tb;
 
60
               T3 = T1 - T2;
 
61
               T8 = T2 + T1;
 
62
               T6 = T4 - T5;
 
63
               T9 = T4 + T5;
 
64
               io[WS(ios, 2)] = KP951056516 * (FMA(KP618033988, T3, T6));
 
65
               io[WS(ios, 1)] = KP951056516 * (FNMS(KP618033988, T6, T3));
 
66
               Tc = T8 - T9;
 
67
               Ta = T8 + T9;
 
68
               Tb = FNMS(KP250000000, Ta, T7);
 
69
               ro[0] = T7 + Ta;
 
70
               ro[WS(ros, 2)] = FNMS(KP559016994, Tc, Tb);
 
71
               ro[WS(ros, 1)] = FMA(KP559016994, Tc, Tb);
 
72
          }
 
73
     }
 
74
}
 
75
 
 
76
static const kr2hc_desc desc = { 5, "r2hc_5", {7, 2, 5, 0}, &GENUS, 0, 0, 0, 0, 0 };
 
77
 
 
78
void X(codelet_r2hc_5) (planner *p) {
 
79
     X(kr2hc_register) (p, r2hc_5, &desc);
 
80
}
 
81
 
 
82
#else                           /* HAVE_FMA */
 
83
 
 
84
/* Generated by: ../../../genfft/gen_r2hc -compact -variables 4 -pipeline-latency 4 -n 5 -name r2hc_5 -include r2hc.h */
 
85
 
 
86
/*
 
87
 * This function contains 12 FP additions, 6 FP multiplications,
 
88
 * (or, 9 additions, 3 multiplications, 3 fused multiply/add),
 
89
 * 17 stack variables, and 10 memory accesses
 
90
 */
 
91
/*
 
92
 * Generator Id's : 
 
93
 * $Id: algsimp.ml,v 1.9 2006-02-12 23:34:12 athena Exp $
 
94
 * $Id: fft.ml,v 1.4 2006-01-05 03:04:27 stevenj Exp $
 
95
 * $Id: gen_r2hc.ml,v 1.18 2006-02-12 23:34:12 athena Exp $
 
96
 */
 
97
 
 
98
#include "r2hc.h"
 
99
 
 
100
static void r2hc_5(const R *I, R *ro, R *io, stride is, stride ros, stride ios, INT v, INT ivs, INT ovs)
 
101
{
 
102
     DK(KP250000000, +0.250000000000000000000000000000000000000000000);
 
103
     DK(KP559016994, +0.559016994374947424102293417182819058860154590);
 
104
     DK(KP587785252, +0.587785252292473129168705954639072768597652438);
 
105
     DK(KP951056516, +0.951056516295153572116439333379382143405698634);
 
106
     INT i;
 
107
     for (i = v; i > 0; i = i - 1, I = I + ivs, ro = ro + ovs, io = io + ovs, MAKE_VOLATILE_STRIDE(is), MAKE_VOLATILE_STRIDE(ros), MAKE_VOLATILE_STRIDE(ios)) {
 
108
          E Ta, T7, T8, T3, Tb, T6, T9, Tc;
 
109
          Ta = I[0];
 
110
          {
 
111
               E T1, T2, T4, T5;
 
112
               T1 = I[WS(is, 4)];
 
113
               T2 = I[WS(is, 1)];
 
114
               T7 = T2 + T1;
 
115
               T4 = I[WS(is, 2)];
 
116
               T5 = I[WS(is, 3)];
 
117
               T8 = T4 + T5;
 
118
               T3 = T1 - T2;
 
119
               Tb = T7 + T8;
 
120
               T6 = T4 - T5;
 
121
          }
 
122
          io[WS(ios, 1)] = FNMS(KP587785252, T6, KP951056516 * T3);
 
123
          ro[0] = Ta + Tb;
 
124
          io[WS(ios, 2)] = FMA(KP587785252, T3, KP951056516 * T6);
 
125
          T9 = KP559016994 * (T7 - T8);
 
126
          Tc = FNMS(KP250000000, Tb, Ta);
 
127
          ro[WS(ros, 1)] = T9 + Tc;
 
128
          ro[WS(ros, 2)] = Tc - T9;
 
129
     }
 
130
}
 
131
 
 
132
static const kr2hc_desc desc = { 5, "r2hc_5", {9, 3, 3, 0}, &GENUS, 0, 0, 0, 0, 0 };
 
133
 
 
134
void X(codelet_r2hc_5) (planner *p) {
 
135
     X(kr2hc_register) (p, r2hc_5, &desc);
 
136
}
 
137
 
 
138
#endif                          /* HAVE_FMA */