ref: 2df55d3583ce73186c91edd86e7e02c9df621522
parent: 59dce643b1e79b4b3a15c70a19e6d4992e92b967
author: Jan Buethe <jbuethe@amazon.de>
date: Fri Oct 21 13:32:52 EDT 2022
added dred encoder to silk encoder
--- a/autogen.sh
+++ b/autogen.sh
@@ -9,7 +9,7 @@
srcdir=`dirname $0`
test -n "$srcdir" && cd "$srcdir"
-(cd lpcnet; ./download_model.sh plc_challenge_weights)
+(cd lpcnet; ./download_model.sh plc_challenge)
echo "Updating build configuration files, please wait...."
--- a/configure.ac
+++ b/configure.ac
@@ -821,6 +821,14 @@
HAVE_DOXYGEN=no
])
+AC_ARG_ENABLE([dot-product],
+ AS_HELP_STRING([--disable-dot-product], [Disable dot product implementation]),,
+ enable_dot_product=yes)
+
+AS_IF([test "$enable_dot_product" = "no"], [
+ AC_DEFINE([DISABLE_DOT_PROD], [1], [Disable dot product instructions])
+])
+
AM_CONDITIONAL([HAVE_DOXYGEN], [test "$HAVE_DOXYGEN" = "yes"])
AC_ARG_ENABLE([extra-programs],
--
⑨