annotate src/fftw-3.3.5/dft/simd/common/n1fv_5.c @ 165:7e6e71a29886

Update build for AUDIO_COMPONENT_FIX
author Chris Cannam <cannam@all-day-breakfast.com>
date Wed, 30 Oct 2019 12:40:34 +0000
parents 7867fa7e1b6b
children
rev   line source
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 /* This file was automatically generated --- DO NOT EDIT */
cannam@127 22 /* Generated on Sat Jul 30 16:38:39 EDT 2016 */
cannam@127 23
cannam@127 24 #include "codelet-dft.h"
cannam@127 25
cannam@127 26 #ifdef HAVE_FMA
cannam@127 27
cannam@127 28 /* Generated by: ../../../genfft/gen_notw_c.native -fma -reorder-insns -schedule-for-pipeline -simd -compact -variables 4 -pipeline-latency 8 -n 5 -name n1fv_5 -include n1f.h */
cannam@127 29
cannam@127 30 /*
cannam@127 31 * This function contains 16 FP additions, 11 FP multiplications,
cannam@127 32 * (or, 7 additions, 2 multiplications, 9 fused multiply/add),
cannam@127 33 * 23 stack variables, 4 constants, and 10 memory accesses
cannam@127 34 */
cannam@127 35 #include "n1f.h"
cannam@127 36
cannam@127 37 static void n1fv_5(const R *ri, const R *ii, R *ro, R *io, stride is, stride os, INT v, INT ivs, INT ovs)
cannam@127 38 {
cannam@127 39 DVK(KP559016994, +0.559016994374947424102293417182819058860154590);
cannam@127 40 DVK(KP250000000, +0.250000000000000000000000000000000000000000000);
cannam@127 41 DVK(KP618033988, +0.618033988749894848204586834365638117720309180);
cannam@127 42 DVK(KP951056516, +0.951056516295153572116439333379382143405698634);
cannam@127 43 {
cannam@127 44 INT i;
cannam@127 45 const R *xi;
cannam@127 46 R *xo;
cannam@127 47 xi = ri;
cannam@127 48 xo = ro;
cannam@127 49 for (i = v; i > 0; i = i - VL, xi = xi + (VL * ivs), xo = xo + (VL * ovs), MAKE_VOLATILE_STRIDE(10, is), MAKE_VOLATILE_STRIDE(10, os)) {
cannam@127 50 V T1, T2, T3, T5, T6;
cannam@127 51 T1 = LD(&(xi[0]), ivs, &(xi[0]));
cannam@127 52 T2 = LD(&(xi[WS(is, 1)]), ivs, &(xi[WS(is, 1)]));
cannam@127 53 T3 = LD(&(xi[WS(is, 4)]), ivs, &(xi[0]));
cannam@127 54 T5 = LD(&(xi[WS(is, 2)]), ivs, &(xi[0]));
cannam@127 55 T6 = LD(&(xi[WS(is, 3)]), ivs, &(xi[WS(is, 1)]));
cannam@127 56 {
cannam@127 57 V Tc, T4, Td, T7;
cannam@127 58 Tc = VSUB(T2, T3);
cannam@127 59 T4 = VADD(T2, T3);
cannam@127 60 Td = VSUB(T5, T6);
cannam@127 61 T7 = VADD(T5, T6);
cannam@127 62 {
cannam@127 63 V Tg, Te, Ta, T8, T9, Tf, Tb;
cannam@127 64 Tg = VMUL(LDK(KP951056516), VFNMS(LDK(KP618033988), Tc, Td));
cannam@127 65 Te = VMUL(LDK(KP951056516), VFMA(LDK(KP618033988), Td, Tc));
cannam@127 66 Ta = VSUB(T4, T7);
cannam@127 67 T8 = VADD(T4, T7);
cannam@127 68 T9 = VFNMS(LDK(KP250000000), T8, T1);
cannam@127 69 ST(&(xo[0]), VADD(T1, T8), ovs, &(xo[0]));
cannam@127 70 Tf = VFNMS(LDK(KP559016994), Ta, T9);
cannam@127 71 Tb = VFMA(LDK(KP559016994), Ta, T9);
cannam@127 72 ST(&(xo[WS(os, 2)]), VFMAI(Tg, Tf), ovs, &(xo[0]));
cannam@127 73 ST(&(xo[WS(os, 3)]), VFNMSI(Tg, Tf), ovs, &(xo[WS(os, 1)]));
cannam@127 74 ST(&(xo[WS(os, 4)]), VFMAI(Te, Tb), ovs, &(xo[0]));
cannam@127 75 ST(&(xo[WS(os, 1)]), VFNMSI(Te, Tb), ovs, &(xo[WS(os, 1)]));
cannam@127 76 }
cannam@127 77 }
cannam@127 78 }
cannam@127 79 }
cannam@127 80 VLEAVE();
cannam@127 81 }
cannam@127 82
cannam@127 83 static const kdft_desc desc = { 5, XSIMD_STRING("n1fv_5"), {7, 2, 9, 0}, &GENUS, 0, 0, 0, 0 };
cannam@127 84
cannam@127 85 void XSIMD(codelet_n1fv_5) (planner *p) {
cannam@127 86 X(kdft_register) (p, n1fv_5, &desc);
cannam@127 87 }
cannam@127 88
cannam@127 89 #else /* HAVE_FMA */
cannam@127 90
cannam@127 91 /* Generated by: ../../../genfft/gen_notw_c.native -simd -compact -variables 4 -pipeline-latency 8 -n 5 -name n1fv_5 -include n1f.h */
cannam@127 92
cannam@127 93 /*
cannam@127 94 * This function contains 16 FP additions, 6 FP multiplications,
cannam@127 95 * (or, 13 additions, 3 multiplications, 3 fused multiply/add),
cannam@127 96 * 18 stack variables, 4 constants, and 10 memory accesses
cannam@127 97 */
cannam@127 98 #include "n1f.h"
cannam@127 99
cannam@127 100 static void n1fv_5(const R *ri, const R *ii, R *ro, R *io, stride is, stride os, INT v, INT ivs, INT ovs)
cannam@127 101 {
cannam@127 102 DVK(KP250000000, +0.250000000000000000000000000000000000000000000);
cannam@127 103 DVK(KP587785252, +0.587785252292473129168705954639072768597652438);
cannam@127 104 DVK(KP951056516, +0.951056516295153572116439333379382143405698634);
cannam@127 105 DVK(KP559016994, +0.559016994374947424102293417182819058860154590);
cannam@127 106 {
cannam@127 107 INT i;
cannam@127 108 const R *xi;
cannam@127 109 R *xo;
cannam@127 110 xi = ri;
cannam@127 111 xo = ro;
cannam@127 112 for (i = v; i > 0; i = i - VL, xi = xi + (VL * ivs), xo = xo + (VL * ovs), MAKE_VOLATILE_STRIDE(10, is), MAKE_VOLATILE_STRIDE(10, os)) {
cannam@127 113 V T8, T7, Td, T9, Tc;
cannam@127 114 T8 = LD(&(xi[0]), ivs, &(xi[0]));
cannam@127 115 {
cannam@127 116 V T1, T2, T3, T4, T5, T6;
cannam@127 117 T1 = LD(&(xi[WS(is, 1)]), ivs, &(xi[WS(is, 1)]));
cannam@127 118 T2 = LD(&(xi[WS(is, 4)]), ivs, &(xi[0]));
cannam@127 119 T3 = VADD(T1, T2);
cannam@127 120 T4 = LD(&(xi[WS(is, 2)]), ivs, &(xi[0]));
cannam@127 121 T5 = LD(&(xi[WS(is, 3)]), ivs, &(xi[WS(is, 1)]));
cannam@127 122 T6 = VADD(T4, T5);
cannam@127 123 T7 = VMUL(LDK(KP559016994), VSUB(T3, T6));
cannam@127 124 Td = VSUB(T4, T5);
cannam@127 125 T9 = VADD(T3, T6);
cannam@127 126 Tc = VSUB(T1, T2);
cannam@127 127 }
cannam@127 128 ST(&(xo[0]), VADD(T8, T9), ovs, &(xo[0]));
cannam@127 129 {
cannam@127 130 V Te, Tf, Tb, Tg, Ta;
cannam@127 131 Te = VBYI(VFMA(LDK(KP951056516), Tc, VMUL(LDK(KP587785252), Td)));
cannam@127 132 Tf = VBYI(VFNMS(LDK(KP587785252), Tc, VMUL(LDK(KP951056516), Td)));
cannam@127 133 Ta = VFNMS(LDK(KP250000000), T9, T8);
cannam@127 134 Tb = VADD(T7, Ta);
cannam@127 135 Tg = VSUB(Ta, T7);
cannam@127 136 ST(&(xo[WS(os, 1)]), VSUB(Tb, Te), ovs, &(xo[WS(os, 1)]));
cannam@127 137 ST(&(xo[WS(os, 3)]), VSUB(Tg, Tf), ovs, &(xo[WS(os, 1)]));
cannam@127 138 ST(&(xo[WS(os, 4)]), VADD(Te, Tb), ovs, &(xo[0]));
cannam@127 139 ST(&(xo[WS(os, 2)]), VADD(Tf, Tg), ovs, &(xo[0]));
cannam@127 140 }
cannam@127 141 }
cannam@127 142 }
cannam@127 143 VLEAVE();
cannam@127 144 }
cannam@127 145
cannam@127 146 static const kdft_desc desc = { 5, XSIMD_STRING("n1fv_5"), {13, 3, 3, 0}, &GENUS, 0, 0, 0, 0 };
cannam@127 147
cannam@127 148 void XSIMD(codelet_n1fv_5) (planner *p) {
cannam@127 149 X(kdft_register) (p, n1fv_5, &desc);
cannam@127 150 }
cannam@127 151
cannam@127 152 #endif /* HAVE_FMA */