Update ggml.c

This commit is contained in:
Julia Longtin 2024-03-16 14:15:51 +00:00
parent f940c96aac
commit 6e1b77ad58

2
ggml.c
View file

@ -1574,7 +1574,7 @@ static void ggml_vec_dot_f32(int n, float * restrict s, size_t bs, const float *
UNUSED(by);
UNUSED(bs);
#if defined(GGML_SIMD)
#ifdef GGML_SIMD
float sumf = 0.0f;
const int np = (n & ~(GGML_F32_STEP - 1));