From 0035858273ebe0694926bf4414d279f3e1cd109d Mon Sep 17 00:00:00 2001 From: johnson442 <56517414+johnson442@users.noreply.github.com> Date: Thu, 8 Jun 2023 08:02:48 +0100 Subject: [PATCH] k-quants : add missing compile definition to CMakeLists (#1748) --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 456875f90..41f5bb737 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -229,6 +229,7 @@ endif() if (LLAMA_K_QUANTS) set(GGML_SOURCES_EXTRA ${GGML_SOURCES_EXTRA} k_quants.c k_quants.h) + add_compile_definitions(GGML_USE_K_QUANTS) endif() if (LLAMA_CLBLAST)