We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GGML.c is using "_mm256_set_m128i" which is not available in GCC 7.5.0.
The workaround is to port the macro definition in GCC 9 directly to GGML.c.
--- a/ggml.c +++ b/ggml.c @@ -188,6 +188,12 @@ typedef double ggml_float; #else #if !defined(__riscv) #include <immintrin.h> +extern __inline __m256i __attribute__((__gnu_inline__, __always_inline__, __artificial__)) +_mm256_set_m128i (__m128i __H, __m128i __L) +{ + return _mm256_insertf128_si256 (_mm256_castsi128_si256 (__L), __H, 1); +} + #endif #endif #endif
The text was updated successfully, but these errors were encountered:
If applying patch as a polyfill, it should be forwards compatible.
Sorry, something went wrong.
This issue was closed because it has been inactive for 14 days since being marked as stale.
No branches or pull requests
GGML.c is using "_mm256_set_m128i" which is not available in GCC 7.5.0.
The workaround is to port the macro definition in GCC 9 directly to GGML.c.
The text was updated successfully, but these errors were encountered: