summaryrefslogtreecommitdiff
path: root/dev-libs/ncnn/files/ncnn-20241226-avx512.patch
blob: c4dcf8adb50056101d0d89eab32e758c45ce969d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Quick fix for build with -march that enables avx512f.

This is not where ncnn would include this though, it seems to have
tendency to put headers not where they're used by in every files
before including this.
--- a/src/layer/x86/gemm_int8.h
+++ b/src/layer/x86/gemm_int8.h
@@ -13,4 +13,8 @@
 // specific language governing permissions and limitations under the License.
 
+#if __AVX512F__
+#include "avx512_mathfun.h"
+#endif
+
 #if NCNN_RUNTIME_CPU && NCNN_AVX512VNNI && __AVX512F__ && !__AVX512VNNI__
 void pack_A_tile_int8_avx512vnni(const Mat& A, Mat& AT, int i, int max_ii, int k, int max_kk);