| 3533 | float sumf = 0.0f; |
| 3534 | |
| 3535 | for (int i = 0; i < nb; i++) { |
| 3536 | const float d = y[i].d * f16_to_f32(x[i].d); |
| 3537 | const float dm = -y[i].d * f16_to_f32(x[i].dmin); |
| 3538 | |
| 3539 | const uint8_t *qs = x[i].qs; |
| 3540 | const uint8_t *sc = x[i].scales; |
| 3541 | const int8_t *q8 = y[i].qs; |
| 3542 | |
| 3543 | int32_t summs = 0; |
| 3544 | for (int j = 0; j < QK_K / 32; j++) { |
no test coverage detected