ggml : remove trailing whitespaces

This commit is contained in:
Georgi Gerganov
2023-04-10 19:32:45 +03:00
parent d9a239c410
commit 9d634ef452

2
ggml.c
View File

@@ -1954,7 +1954,6 @@ static void ggml_vec_dot_q4_0(const int n, float * restrict s, const void * rest
// Main loop
for (int i = 0; i < nb; i+=UNROLL_COUNT) {
// This loop will be unrolled by the compiler
for (int u=0;u<UNROLL_COUNT;u++) {
/* Compute combined scale for the block */
@@ -2007,7 +2006,6 @@ static void ggml_vec_dot_q4_0(const int n, float * restrict s, const void * rest
/* Multiply q with scale and accumulate */
acc = _mm256_fmadd_ps( scale, q, acc );
}
}
// Return horizontal sum of the acc vector