| 2160 | } |
| 2161 | |
| 2162 | void quantize_row_q5_K(const float * restrict x, void * restrict vy, int k) { |
| 2163 | assert(k % QK_K == 0); |
| 2164 | block_q5_K * restrict y = vy; |
| 2165 | quantize_row_q5_K_reference(x, y, k); |
| 2166 | } |
| 2167 | |
| 2168 | size_t ggml_quantize_q5_K(const float * restrict src, void * restrict dst, int n, int k, int64_t * restrict hist) { |
| 2169 | assert(k % QK_K == 0); |
nothing calls this directly
no test coverage detected