ref: 702fffb70a350aa2158825d61127941b87870649
parent: 5b96946277d10807ff262b8734e470b55f41636a
author: xnorpx <xnorpx@outlook.com>
date: Mon May 22 15:09:37 EDT 2023
Include math.h to make header self-contained. Signed-off-by: Jean-Marc Valin <jmvalin@amazon.com>
--- a/dnn/vec_avx.h
+++ b/dnn/vec_avx.h
@@ -33,6 +33,7 @@
#define VEC_AVX_H
#include <immintrin.h>
+#include <math.h>
/* Use 8-bit dot products unless disabled or if stuck with SSE2. */
#if (defined(__AVX2__) || defined(__SSSE3__)) && !defined(DISABLE_DOT_PROD)
--
⑨