From: Georgi Gerganov Date: Thu, 25 Apr 2024 18:31:17 +0000 (+0300) Subject: cmake : restore LLAMA_LLAMAFILE_DEFAULT X-Git-Tag: upstream/0.0.4488~1751 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=dba497e0c1eff27cf0e85d1d73c86fa08e1b5557;p=pkg%2Fggml%2Fsources%2Fllama.cpp cmake : restore LLAMA_LLAMAFILE_DEFAULT --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 425100ff..477c5b57 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -43,6 +43,8 @@ else() set(LLAMA_METAL_DEFAULT OFF) endif() +set(LLAMA_LLAMAFILE_DEFAULT ON) + # general option(BUILD_SHARED_LIBS "build shared libraries" OFF) option(LLAMA_STATIC "llama: static link libraries" OFF) diff --git a/llama.cpp b/llama.cpp index 0c01a353..d728bd49 100644 --- a/llama.cpp +++ b/llama.cpp @@ -17653,6 +17653,11 @@ const char * llama_print_system_info(void) { s += "SSSE3 = " + std::to_string(ggml_cpu_has_ssse3()) + " | "; s += "VSX = " + std::to_string(ggml_cpu_has_vsx()) + " | "; s += "MATMUL_INT8 = " + std::to_string(ggml_cpu_has_matmul_int8()) + " | "; +#ifdef GGML_USE_LLAMAFILE + s += "LAMMAFILE = 1 | "; +#else + s += "LAMMAFILE = 0 | "; +#endif return s.c_str(); }