gsl_fft__real_pass_5.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. /* fft/real_pass_5.c
  2. *
  3. * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough
  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 3 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. */
  19. static void
  20. FUNCTION(fft_real,pass_5) (const BASE in[],
  21. const size_t istride,
  22. BASE out[],
  23. const size_t ostride,
  24. const size_t product,
  25. const size_t n,
  26. const TYPE(gsl_complex) twiddle1[],
  27. const TYPE(gsl_complex) twiddle2[],
  28. const TYPE(gsl_complex) twiddle3[],
  29. const TYPE(gsl_complex) twiddle4[])
  30. {
  31. size_t k, k1;
  32. const size_t factor = 5;
  33. const size_t m = n / factor;
  34. const size_t q = n / product;
  35. const size_t product_1 = product / factor;
  36. const ATOMIC sina = sin (2.0 * M_PI / 5.0);
  37. const ATOMIC sinb = sin (2.0 * M_PI / 10.0);
  38. for (k1 = 0; k1 < q; k1++)
  39. {
  40. const size_t from0 = k1 * product_1;
  41. const size_t from1 = from0 + m;
  42. const size_t from2 = from1 + m;
  43. const size_t from3 = from2 + m;
  44. const size_t from4 = from3 + m;
  45. const ATOMIC z0_real = VECTOR(in,istride,from0);
  46. const ATOMIC z1_real = VECTOR(in,istride,from1);
  47. const ATOMIC z2_real = VECTOR(in,istride,from2);
  48. const ATOMIC z3_real = VECTOR(in,istride,from3);
  49. const ATOMIC z4_real = VECTOR(in,istride,from4);
  50. /* t1 = z1 + z4 */
  51. const ATOMIC t1_real = z1_real + z4_real;
  52. /* t2 = z2 + z3 */
  53. const ATOMIC t2_real = z2_real + z3_real;
  54. /* t3 = z1 - z4 */
  55. const ATOMIC t3_real = z1_real - z4_real;
  56. /* t4 = z2 - z3 */
  57. const ATOMIC t4_real = z2_real - z3_real;
  58. /* t5 = t1 + t2 */
  59. const ATOMIC t5_real = t1_real + t2_real;
  60. /* t6 = (sqrt(5)/4)(t1 - t2) */
  61. const ATOMIC t6_real = (sqrt (5.0) / 4.0) * (t1_real - t2_real);
  62. /* t7 = z0 - ((t5)/4) */
  63. const ATOMIC t7_real = z0_real - t5_real / 4.0;
  64. /* t8 = t7 + t6 */
  65. const ATOMIC t8_real = t7_real + t6_real;
  66. /* t9 = t7 - t6 */
  67. const ATOMIC t9_real = t7_real - t6_real;
  68. /* t10 = -(sin(2 pi/5) t3 + sin(2 pi/10) t4 ) */
  69. const ATOMIC t10_real = -sina * t3_real - sinb * t4_real;
  70. /* t11 = -(sin(2 pi/10) t3 - sin(2 pi/5) t4) */
  71. const ATOMIC t11_real = -sinb * t3_real + sina * t4_real;
  72. /* x0 = z0 + t5 */
  73. const ATOMIC x0_real = z0_real + t5_real;
  74. /* x1 = t8 + i t10 */
  75. const ATOMIC x1_real = t8_real;
  76. const ATOMIC x1_imag = t10_real;
  77. /* x2 = t9 + i t11 */
  78. const ATOMIC x2_real = t9_real;
  79. const ATOMIC x2_imag = t11_real;
  80. const size_t to0 = product * k1;
  81. const size_t to1 = to0 + 2 * product_1 - 1;
  82. const size_t to2 = to1 + 2 * product_1;
  83. VECTOR(out,ostride,to0) = x0_real;
  84. VECTOR(out,ostride,to1) = x1_real;
  85. VECTOR(out,ostride,to1 + 1) = x1_imag;
  86. VECTOR(out,ostride,to2) = x2_real;
  87. VECTOR(out,ostride,to2 + 1) = x2_imag;
  88. }
  89. if (product_1 == 1)
  90. return;
  91. for (k = 1; k < (product_1 + 1) / 2; k++)
  92. {
  93. const ATOMIC w1_real = GSL_REAL(twiddle1[k - 1]);
  94. const ATOMIC w1_imag = -GSL_IMAG(twiddle1[k - 1]);
  95. const ATOMIC w2_real = GSL_REAL(twiddle2[k - 1]);
  96. const ATOMIC w2_imag = -GSL_IMAG(twiddle2[k - 1]);
  97. const ATOMIC w3_real = GSL_REAL(twiddle3[k - 1]);
  98. const ATOMIC w3_imag = -GSL_IMAG(twiddle3[k - 1]);
  99. const ATOMIC w4_real = GSL_REAL(twiddle4[k - 1]);
  100. const ATOMIC w4_imag = -GSL_IMAG(twiddle4[k - 1]);
  101. for (k1 = 0; k1 < q; k1++)
  102. {
  103. const size_t from0 = k1 * product_1 + 2 * k - 1;
  104. const size_t from1 = from0 + m;
  105. const size_t from2 = from1 + m;
  106. const size_t from3 = from2 + m;
  107. const size_t from4 = from3 + m;
  108. const ATOMIC f0_real = VECTOR(in,istride,from0);
  109. const ATOMIC f0_imag = VECTOR(in,istride,from0 + 1);
  110. const ATOMIC f1_real = VECTOR(in,istride,from1);
  111. const ATOMIC f1_imag = VECTOR(in,istride,from1 + 1);
  112. const ATOMIC f2_real = VECTOR(in,istride,from2);
  113. const ATOMIC f2_imag = VECTOR(in,istride,from2 + 1);
  114. const ATOMIC f3_real = VECTOR(in,istride,from3);
  115. const ATOMIC f3_imag = VECTOR(in,istride,from3 + 1);
  116. const ATOMIC f4_real = VECTOR(in,istride,from4);
  117. const ATOMIC f4_imag = VECTOR(in,istride,from4 + 1);
  118. const ATOMIC z0_real = f0_real;
  119. const ATOMIC z0_imag = f0_imag;
  120. const ATOMIC z1_real = w1_real * f1_real - w1_imag * f1_imag;
  121. const ATOMIC z1_imag = w1_real * f1_imag + w1_imag * f1_real;
  122. const ATOMIC z2_real = w2_real * f2_real - w2_imag * f2_imag;
  123. const ATOMIC z2_imag = w2_real * f2_imag + w2_imag * f2_real;
  124. const ATOMIC z3_real = w3_real * f3_real - w3_imag * f3_imag;
  125. const ATOMIC z3_imag = w3_real * f3_imag + w3_imag * f3_real;
  126. const ATOMIC z4_real = w4_real * f4_real - w4_imag * f4_imag;
  127. const ATOMIC z4_imag = w4_real * f4_imag + w4_imag * f4_real;
  128. /* compute x = W(5) z */
  129. /* t1 = z1 + z4 */
  130. const ATOMIC t1_real = z1_real + z4_real;
  131. const ATOMIC t1_imag = z1_imag + z4_imag;
  132. /* t2 = z2 + z3 */
  133. const ATOMIC t2_real = z2_real + z3_real;
  134. const ATOMIC t2_imag = z2_imag + z3_imag;
  135. /* t3 = z1 - z4 */
  136. const ATOMIC t3_real = z1_real - z4_real;
  137. const ATOMIC t3_imag = z1_imag - z4_imag;
  138. /* t4 = z2 - z3 */
  139. const ATOMIC t4_real = z2_real - z3_real;
  140. const ATOMIC t4_imag = z2_imag - z3_imag;
  141. /* t5 = t1 + t2 */
  142. const ATOMIC t5_real = t1_real + t2_real;
  143. const ATOMIC t5_imag = t1_imag + t2_imag;
  144. /* t6 = (sqrt(5)/4)(t1 - t2) */
  145. const ATOMIC t6_real = (sqrt (5.0) / 4.0) * (t1_real - t2_real);
  146. const ATOMIC t6_imag = (sqrt (5.0) / 4.0) * (t1_imag - t2_imag);
  147. /* t7 = z0 - ((t5)/4) */
  148. const ATOMIC t7_real = z0_real - t5_real / 4.0;
  149. const ATOMIC t7_imag = z0_imag - t5_imag / 4.0;
  150. /* t8 = t7 + t6 */
  151. const ATOMIC t8_real = t7_real + t6_real;
  152. const ATOMIC t8_imag = t7_imag + t6_imag;
  153. /* t9 = t7 - t6 */
  154. const ATOMIC t9_real = t7_real - t6_real;
  155. const ATOMIC t9_imag = t7_imag - t6_imag;
  156. /* t10 = - (sin(2 pi/5) t3 + sin(2 pi/10) t4) */
  157. const ATOMIC t10_real = -sina * t3_real - sinb * t4_real;
  158. const ATOMIC t10_imag = -sina * t3_imag - sinb * t4_imag;
  159. /* t11 = -(sin(2 pi/10) t3 - sin(2 pi/5) t4) */
  160. const ATOMIC t11_real = -sinb * t3_real + sina * t4_real;
  161. const ATOMIC t11_imag = -sinb * t3_imag + sina * t4_imag;
  162. /* x0 = z0 + t5 */
  163. const ATOMIC x0_real = z0_real + t5_real;
  164. const ATOMIC x0_imag = z0_imag + t5_imag;
  165. /* x1 = t8 + i t10 */
  166. const ATOMIC x1_real = t8_real - t10_imag;
  167. const ATOMIC x1_imag = t8_imag + t10_real;
  168. /* x2 = t9 + i t11 */
  169. const ATOMIC x2_real = t9_real - t11_imag;
  170. const ATOMIC x2_imag = t9_imag + t11_real;
  171. /* x3 = t9 - i t11 */
  172. const ATOMIC x3_real = t9_real + t11_imag;
  173. const ATOMIC x3_imag = t9_imag - t11_real;
  174. /* x4 = t8 - i t10 */
  175. const ATOMIC x4_real = t8_real + t10_imag;
  176. const ATOMIC x4_imag = t8_imag - t10_real;
  177. const size_t to0 = k1 * product + 2 * k - 1;
  178. const size_t to1 = to0 + 2 * product_1;
  179. const size_t to2 = to1 + 2 * product_1;
  180. const size_t to3 = 2 * product_1 - 2 * k + k1 * product - 1;
  181. const size_t to4 = to3 + 2 * product_1;
  182. VECTOR(out,ostride,to0) = x0_real;
  183. VECTOR(out,ostride,to0 + 1) = x0_imag;
  184. VECTOR(out,ostride,to1) = x1_real;
  185. VECTOR(out,ostride,to1 + 1) = x1_imag;
  186. VECTOR(out,ostride,to2) = x2_real;
  187. VECTOR(out,ostride,to2 + 1) = x2_imag;
  188. VECTOR(out,ostride,to3) = x4_real;
  189. VECTOR(out,ostride,to3 + 1) = -x4_imag;
  190. VECTOR(out,ostride,to4) = x3_real;
  191. VECTOR(out,ostride,to4 + 1) = -x3_imag;
  192. }
  193. }
  194. if (product_1 % 2 == 1)
  195. return;
  196. for (k1 = 0; k1 < q; k1++)
  197. {
  198. const size_t from0 = k1 * product_1 + product_1 - 1;
  199. const size_t from1 = from0 + m;
  200. const size_t from2 = from1 + m;
  201. const size_t from3 = from2 + m;
  202. const size_t from4 = from3 + m;
  203. const ATOMIC z0_real = VECTOR(in,istride,from0);
  204. const ATOMIC z1_real = VECTOR(in,istride,from1);
  205. const ATOMIC z2_real = VECTOR(in,istride,from2);
  206. const ATOMIC z3_real = VECTOR(in,istride,from3);
  207. const ATOMIC z4_real = VECTOR(in,istride,from4);
  208. const ATOMIC t1 = z1_real - z4_real;
  209. const ATOMIC t2 = z1_real + z4_real;
  210. const ATOMIC t3 = z2_real - z3_real;
  211. const ATOMIC t4 = z2_real + z3_real;
  212. const ATOMIC t5 = t1 - t3;
  213. const ATOMIC t6 = z0_real + t5 / 4.0;
  214. const ATOMIC t7 = (sqrt (5.0) / 4.0) * (t1 + t3);
  215. const size_t to0 = k1 * product + product_1 - 1;
  216. const size_t to1 = to0 + 2 * product_1;
  217. const size_t to2 = to1 + 2 * product_1;
  218. VECTOR(out,ostride,to0) = t6 + t7;
  219. VECTOR(out,ostride,to0 + 1) = -sinb * t2 - sina * t4;
  220. VECTOR(out,ostride,to1) = t6 - t7;
  221. VECTOR(out,ostride,to1 + 1) = -sina * t2 + sinb * t4;
  222. VECTOR(out,ostride,to2) = z0_real - t5;
  223. }
  224. return;
  225. }