From acdec2fe2511180f7af43f2fba185ef5c91e24c1 Mon Sep 17 00:00:00 2001 From: "Alessandro de Oliveira Faria (A.K.A. CABELO)" Date: Tue, 20 Feb 2024 05:22:38 -0300 Subject: [PATCH] cabelo@opensuse.org - Build in openSUSE:compatible with gcc7 --- ggml-quants.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ggml-quants.c b/ggml-quants.c index 3319d2ccf..cb7567fc2 100644 --- a/ggml-quants.c +++ b/ggml-quants.c @@ -52,6 +52,12 @@ #define UNUSED GGML_UNUSED #define MM256_SET_M128I(a, b) _mm256_insertf128_si256(_mm256_castsi128_si256(b), (a), 1) +#ifdef __GNUC__ +#if __GNUC__ < 8 +#define _mm256_set_m128i(a, b) _mm256_permute2f128_si256(_mm256_castsi128_si256(a), _mm256_castsi128_si256(b), 2) +#endif +#endif + #if defined(__AVX__) || defined(__AVX2__) || defined(__AVX512F__) || defined(__SSSE3__) // multiply int8_t, add results pairwise twice