added row

This commit is contained in:
vithulep 2025-06-11 11:49:15 +05:30
parent f321910a3b
commit de0a047f47
1 changed files with 1 additions and 0 deletions

View File

@ -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;
}