ref: aca04ce269eb1e91f353504ed69e15ee3b60fde2
parent: f82f9d1ebb340f0848b195d663471b35658d5ccd
author: Jean-Marc Valin <jmvalin@amazon.com>
date: Mon Oct 16 21:52:32 EDT 2023
Default to int8 matrix multiplies when available
--- a/configure.ac
+++ b/configure.ac
@@ -839,6 +839,14 @@
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],
--
⑨