From de0a047f47176af381ae9e999c1856b0142ef603 Mon Sep 17 00:00:00 2001
From: vithulep
Date: Wed, 11 Jun 2025 11:49:15 +0530
Subject: [PATCH] added row
---
ggml/src/ggml-quants.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/ggml/src/ggml-quants.c b/ggml/src/ggml-quants.c
index deaea58f3a..6d0d5d4ec1 100644
--- a/ggml/src/ggml-quants.c
+++ b/ggml/src/ggml-quants.c
@@ -364,6 +364,7 @@ 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;
}