shithub: opus

Download patch

ref: 8f7c72a6624259037b948c38fc6c890f0f605612
parent: 4710bdf7122d1dbc6f8df41137d5a1d4cddaa603
author: Jean-Marc Valin <jmvalin@amazon.com>
date: Fri Jul 21 17:42:33 EDT 2023

Always define USE_SU_BIAS in vec_avx.h

--- a/dnn/vec_avx.h
+++ b/dnn/vec_avx.h
@@ -38,11 +38,12 @@
 
 #define MAX_INPUTS (2048)
 
+#define USE_SU_BIAS
 
+
 /* Use 8-bit dot products unless disabled or if stuck with SSE2. */
 #ifndef DISABLE_DOT_PROD
 #define DOT_PROD
-#define USE_SU_BIAS
 #endif
 
 
--