@@ -40,8 +40,8 @@ GGML_API void quantize_row_iq4_xs_ref (const float * GGML_RESTRICT x, block_iq4_
4040GGML_API void quantize_row_iq3_s_ref (const float * GGML_RESTRICT x , block_iq3_s * GGML_RESTRICT y , int64_t k );
4141GGML_API void quantize_row_iq2_s_ref (const float * GGML_RESTRICT x , block_iq2_s * GGML_RESTRICT y , int64_t k );
4242
43- GGML_API void quantize_row_iq2_k_ref (const float * GGML_RESTRICT x , block_iq2_k * GGML_RESTRICT y , int64_t k );
44- GGML_API void quantize_row_iq3_k_ref (const float * GGML_RESTRICT x , block_iq3_k * GGML_RESTRICT y , int64_t k );
43+ // GGML_API void quantize_row_iq2_k_ref (const float * GGML_RESTRICT x, block_iq2_k * GGML_RESTRICT y, int64_t k);
44+ GGML_API void quantize_row_iq3_k_ref (const float * GGML_RESTRICT x , block_iq3_k * GGML_RESTRICT y , int64_t k );
4545GGML_API void quantize_row_iq4_k_ref (const float * GGML_RESTRICT x , block_iq4_k * GGML_RESTRICT y , int64_t k );
4646GGML_API void quantize_row_iq5_k_ref (const float * GGML_RESTRICT x , block_iq5_k * GGML_RESTRICT y , int64_t k );
4747GGML_API void quantize_row_iq6_k_ref (const float * GGML_RESTRICT x , block_iq6_k * GGML_RESTRICT y , int64_t k );
@@ -135,7 +135,7 @@ GGML_API size_t quantize_q5_1(const float * GGML_RESTRICT src, void * GGML_RESTR
135135GGML_API size_t quantize_q6_0 (const float * GGML_RESTRICT src , void * GGML_RESTRICT dst , int64_t nrows , int64_t n_per_row , const float * imatrix );
136136GGML_API size_t quantize_q8_0 (const float * GGML_RESTRICT src , void * GGML_RESTRICT dst , int64_t nrows , int64_t n_per_row , const float * imatrix );
137137
138- GGML_API size_t quantize_iq2_k (const float * GGML_RESTRICT src , void * GGML_RESTRICT dst , int64_t nrows , int64_t n_per_row , const float * imatrix );
138+ // GGML_API size_t quantize_iq2_k(const float * GGML_RESTRICT src, void * GGML_RESTRICT dst, int64_t nrows, int64_t n_per_row, const float * imatrix);
139139GGML_API size_t quantize_iq3_k (const float * GGML_RESTRICT src , void * GGML_RESTRICT dst , int64_t nrows , int64_t n_per_row , const float * imatrix );
140140GGML_API size_t quantize_iq4_k (const float * GGML_RESTRICT src , void * GGML_RESTRICT dst , int64_t nrows , int64_t n_per_row , const float * imatrix );
141141GGML_API size_t quantize_iq5_k (const float * GGML_RESTRICT src , void * GGML_RESTRICT dst , int64_t nrows , int64_t n_per_row , const float * imatrix );
0 commit comments