Skip to content
Snippets Groups Projects
Verified Commit aca04ce2 authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

Default to int8 matrix multiplies when available

parent f82f9d1e
No related branches found
No related tags found
No related merge requests found
Pipeline #4141 failed
...@@ -839,6 +839,14 @@ AS_IF([test "$enable_dot_product" = "no"], [ ...@@ -839,6 +839,14 @@ AS_IF([test "$enable_dot_product" = "no"], [
AC_DEFINE([DISABLE_DOT_PROD], [1], [Disable dot product instructions]) 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"]) AM_CONDITIONAL([HAVE_DOXYGEN], [test "$HAVE_DOXYGEN" = "yes"])
AC_ARG_ENABLE([extra-programs], AC_ARG_ENABLE([extra-programs],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment