MCPcopy Create free account
hub / github.com/Tiiny-AI/PowerInfer / quantize_row_q5_K

Function quantize_row_q5_K

ggml-quants.c:2162–2166  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2160}
2161
2162void 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
2168size_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);

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected