Skip to content

Commit

Permalink
ggml : add missing semicolon (#0)
Browse files Browse the repository at this point in the history
ggml-ci
  • Loading branch information
ggerganov committed Jul 27, 2024
1 parent ae7985c commit 345c8c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ggml/src/ggml-quants.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 345c8c0

Please sign in to comment.