Remove spaces

This commit is contained in:
vithulep 2025-06-11 09:31:51 +05:30
parent 397f61590d
commit c6158b0766
1 changed files with 0 additions and 1 deletions

View File

@ -366,7 +366,6 @@ void dequantize_row_q8_0(const block_q8_0 * GGML_RESTRICT x, float * GGML_RESTRI
#else
for (int i = 0; i < nb; i++) {
const float d = GGML_FP16_TO_FP32(x[i].d);
for (int j = 0; j < qk; ++j) {
y[i*qk + j] = x[i].qs[j]*d;
}