| 3858 | const uint32_t sign_idx = (aux32[1] >> (7 * l)) & 127u; |
| 3859 | const int8_t *grid = iq2xxs_signed_grid[aux8[l]][sign_idx]; |
| 3860 | const float *yf = yb + base + (uint32_t)l * 8u; |
| 3861 | for (int j = 0; j < 8; j++) { |
| 3862 | sumf += scale * (float)grid[j] * yf[j]; |
| 3863 | } |
| 3864 | } |
| 3865 | } |
| 3866 | } |
| 3867 | |
| 3868 | return sumf; |
no outgoing calls
no test coverage detected