revert bad fix

This commit is contained in:
Concedo 2023-05-29 22:06:12 +08:00
parent ef16d09a51
commit 6b3373cb81
2 changed files with 0 additions and 10 deletions

5
ggml.c
View file

@ -188,11 +188,6 @@ typedef double ggml_float;
#else #else
#if !defined(__riscv) #if !defined(__riscv)
#include <immintrin.h> #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 #endif
#endif #endif

View file

@ -187,11 +187,6 @@ typedef double ggml_v2_float;
#else #else
#if !defined(__riscv) #if !defined(__riscv)
#include <immintrin.h> #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 #endif
#endif #endif