/* Copyright (c) 2018-2019 Mozilla 2023 Amazon */ /* 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 NNET_ARCH_H #define NNET_ARCH_H #include "nnet.h" #include "arch.h" #include "os_support.h" #include "vec.h" #define CAT_SUFFIX2(a,b) a ## b #define CAT_SUFFIX(a,b) CAT_SUFFIX2(a, b) #define RTCD_SUF(name) CAT_SUFFIX(name, RTCD_ARCH) /* Force vectorization on for DNN code because some of the loops rely on compiler vectorization rather than explicitly using intrinsics. */ #if OPUS_GNUC_PREREQ(5,1) #define GCC_POP_OPTIONS #pragma GCC push_options #pragma GCC optimize("tree-vectorize") #endif #define MAX_ACTIVATIONS (4096) static OPUS_INLINE void vec_swish(float *y, const float *x, int N) { int i; float tmp[MAX_ACTIVATIONS]; celt_assert(N <= MAX_ACTIVATIONS); vec_sigmoid(tmp, x, N); for (i=0;ibias; M = linear->nb_inputs; N = linear->nb_outputs; if (linear->float_weights != NULL) { if (linear->weights_idx != NULL) sparse_sgemv8x4(out, linear->float_weights, linear->weights_idx, N, in); else sgemv(out, linear->float_weights, N, M, N, in); } else if (linear->weights != NULL) { if (linear->weights_idx != NULL) sparse_cgemv8x4(out, linear->weights, linear->weights_idx, linear->scale, N, M, in); else cgemv8x4(out, linear->weights, linear->scale, N, M, in); /* Only use SU biases on for integer matrices on SU archs. */ #ifdef USE_SU_BIAS bias = linear->subias; #endif } else OPUS_CLEAR(out, N); if (bias != NULL) { for (i=0;idiag) { /* Diag is only used for GRU recurrent weights. */ celt_assert(3*M == N); for (i=0;idiag[i]*in[i]; out[i+M] += linear->diag[i+M]*in[i]; out[i+2*M] += linear->diag[i+2*M]*in[i]; } } } /* Computes non-padded convolution for input [ ksize1 x in_channels x (len2+ksize2) ], kernel [ out_channels x in_channels x ksize1 x ksize2 ], storing the output as [ out_channels x len2 ]. We assume that the output dimension along the ksize1 axis is 1, i.e. processing one frame at a time. */ static void conv2d_float(float *out, const float *weights, int in_channels, int out_channels, int ktime, int kheight, const float *in, int height, int hstride) { int i; int in_stride; in_stride = height+kheight-1; for (i=0;iin_channels*(height+conv->kheight-1); celt_assert(conv->ktime*time_stride <= MAX_CONV2D_INPUTS); OPUS_COPY(in_buf, mem, (conv->ktime-1)*time_stride); OPUS_COPY(&in_buf[(conv->ktime-1)*time_stride], in, time_stride); OPUS_COPY(mem, &in_buf[time_stride], (conv->ktime-1)*time_stride); bias = conv->bias; if (conv->kheight == 3 && conv->ktime == 3) conv2d_3x3_float(out, conv->float_weights, conv->in_channels, conv->out_channels, in_buf, height, hstride); else conv2d_float(out, conv->float_weights, conv->in_channels, conv->out_channels, conv->ktime, conv->kheight, in_buf, height, hstride); if (bias != NULL) { for (i=0;iout_channels;i++) { int j; for (j=0;jout_channels;i++) { RTCD_SUF(compute_activation_)(&out[i*hstride], &out[i*hstride], height, activation); } } #ifdef GCC_POP_OPTIONS #pragma GCC pop_options #endif #endif