Put __SSE3__ into defined()
This commit is contained in:
parent
ca54314a2f
commit
70c2b6c696
1 changed files with 1 additions and 1 deletions
2
ggml.c
2
ggml.c
|
@ -472,7 +472,7 @@ static const size_t CACHE_LINE_SIZE_F32 = CACHE_LINE_SIZE/sizeof(float);
|
|||
// quantization
|
||||
//
|
||||
|
||||
#if __AVX__ || __AVX2__ || __AVX512F__ || __SSE3__
|
||||
#if __AVX__ || __AVX2__ || __AVX512F__ || defined(__SSE3__)
|
||||
// multiply int8_t, add results pairwise twice
|
||||
static inline __m128i mul_sum_i8_pairs(const __m128i x, const __m128i y) {
|
||||
// Get absolute values of x vectors
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue