From: Georgi Gerganov Date: Sat, 27 Jul 2024 12:57:09 +0000 (+0300) Subject: ggml : add missing semicolon (#0) X-Git-Tag: upstream/0.0.4488~1008 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=345c8c0c87a97c1595f9c8b14833d531c8c7d8df;p=pkg%2Fggml%2Fsources%2Fllama.cpp ggml : add missing semicolon (#0) ggml-ci --- diff --git a/ggml/src/ggml-quants.c b/ggml/src/ggml-quants.c index aa936fe5..9016314f 100644 --- a/ggml/src/ggml-quants.c +++ b/ggml/src/ggml-quants.c @@ -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) {