Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@amazon.com>2023-07-22 04:42:33 +0300
committerJean-Marc Valin <jmvalin@amazon.com>2023-07-22 21:56:05 +0300
commit8f7c72a6624259037b948c38fc6c890f0f605612 (patch)
tree3a3d1ff1957716830e7ce57c969a8caea23b7078
parent4710bdf7122d1dbc6f8df41137d5a1d4cddaa603 (diff)
Always define USE_SU_BIAS in vec_avx.h
-rw-r--r--dnn/vec_avx.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/dnn/vec_avx.h b/dnn/vec_avx.h
index d20a2620..77b3a0e0 100644
--- 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