k_quants: correctly define QK_K in llama.cpp

This commit is contained in:
Iwan Kawrakow 2023-06-23 14:35:21 +03:00
parent 8b98d01e31
commit 558a19427b

View file

@ -21,9 +21,13 @@
#endif
#ifdef GGML_USE_K_QUANTS
#ifndef QK_K
#ifdef GGML_QKK_64
#define QK_K 64
#else
#define QK_K 256
#endif
#endif
#endif
#include <array>
#include <ctime>