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-10-17 08:52:32 +0300
committerJean-Marc Valin <jmvalin@amazon.com>2023-10-17 08:52:32 +0300
commitaca04ce269eb1e91f353504ed69e15ee3b60fde2 (patch)
tree61bd7e46add4d8d8d1f806204cc6c5e087061264
parentf82f9d1ebb340f0848b195d663471b35658d5ccd (diff)
Default to int8 matrix multiplies when available
-rw-r--r--configure.ac8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index d497a465..aa63f841 100644
--- a/configure.ac
+++ b/configure.ac
@@ -839,6 +839,14 @@ AS_IF([test "$enable_dot_product" = "no"], [
AC_DEFINE([DISABLE_DOT_PROD], [1], [Disable dot product instructions])
])
+AC_ARG_ENABLE([dnn-debug-float],
+ AS_HELP_STRING([--enable-dnn-debug-float], [Use floating-point DNN computation everywhere]),,
+ enable_dnn_debug_float=no)
+
+AS_IF([test "$enable_dnn_debug_float" = "no"], [
+ AC_DEFINE([DISABLE_DEBUG_FLOAT], [1], [Disable DNN debug float])
+])
+
AM_CONDITIONAL([HAVE_DOXYGEN], [test "$HAVE_DOXYGEN" = "yes"])
AC_ARG_ENABLE([extra-programs],