]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
ggml : add missing semicolon (#0)
authorGeorgi Gerganov <redacted>
Sat, 27 Jul 2024 12:57:09 +0000 (15:57 +0300)
committerGeorgi Gerganov <redacted>
Sat, 27 Jul 2024 14:43:44 +0000 (17:43 +0300)
ggml-ci

ggml/src/ggml-quants.c

index aa936fe5f8ba25f26dbaa4e139bfc1d99c058c9c..9016314f507f4e24c6fad773c103608406e00cfa 100644 (file)
@@ -4477,7 +4477,7 @@ void ggml_vec_dot_q4_1_q8_1(int n, float * restrict s, size_t bs, const void * r
     sumf = hsum_float_8(acc) + summs;
 #endif
     for (; ib < nb; ++ib) {
-        int sumi0 = 0
+        int sumi0 = 0;
         int sumi1 = 0;
 
         for (int j = 0; j < qk/2; ++j) {