/* Copyright (c) 2018 Mozilla 2008-2011 Octasic Inc. 2012-2017 Jean-Marc Valin */ /* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef VEC_H #define VEC_H #include "tansig_table.h" #include "opus_types.h" #include #include "arch.h" #if defined(__AVX__) || defined(__SSE2__) #include "vec_avx.h" #elif defined(__ARM_NEON__) || defined(__ARM_NEON) #include "vec_neon.h" #else #define MAX_INPUTS (2048) #define NO_OPTIMIZATIONS #ifndef DISABLE_DOT_PROD #define DOT_PROD /*#define USE_SU_BIAS*/ #endif #ifdef DOT_PROD typedef signed char qweight; #else typedef float qweight; #endif /* No AVX2/FMA support */ #ifndef LPCNET_TEST static inline float celt_exp2(float x) { int integer; float frac; union { float f; opus_uint32 i; } res; integer = floor(x); if (integer < -50) return 0; frac = x-integer; /* K0 = 1, K1 = log(2), K2 = 3-4*log(2), K3 = 3*log(2) - 2 */ res.f = 0.99992522f + frac * (0.69583354f + frac * (0.22606716f + 0.078024523f*frac)); res.i = (res.i + (integer<<23)) & 0x7fffffff; return res.f; } #define celt_exp(x) celt_exp2((x)*1.44269504f) static inline float tanh_approx(float x) { int i; float y, dy; float sign=1; if (x<0) { x=-x; sign=-1; } i = (int)floor(.5f+25*x); i = IMAX(0, IMIN(200, i)); x -= .04f*i; y = tansig_table[i]; dy = 1-y*y; y = y + x*dy*(1 - y*x); return sign*y; } static inline float sigmoid_approx(float x) { return .5f + .5f*tanh_approx(.5f*x); } static inline void softmax(float *y, const float *x, int N) { int i; for (i=0;i