ggml : fix q6_K FP16 -> FP32 conversion
ggml-ci
This commit is contained in:
parent
80196bd76c
commit
dd04b7c480
1 changed files with 1 additions and 1 deletions
|
@ -8508,7 +8508,7 @@ void ggml_vec_dot_q6_K_q8_K(int n, float * restrict s, size_t bs, const void * r
|
|||
|
||||
for (int i = 0; i < nb; ++i) {
|
||||
|
||||
const float d_all = (float)x[i].d;
|
||||
const float d_all = GGML_FP16_TO_FP32(x[i].d);
|
||||
|
||||
const uint8_t * restrict q6 = x[i].ql;
|
||||
const uint8_t * restrict qh = x[i].qh;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue