We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa0b4ad commit dba497eCopy full SHA for dba497e
CMakeLists.txt
@@ -43,6 +43,8 @@ else()
43
set(LLAMA_METAL_DEFAULT OFF)
44
endif()
45
46
+set(LLAMA_LLAMAFILE_DEFAULT ON)
47
+
48
# general
49
option(BUILD_SHARED_LIBS "build shared libraries" OFF)
50
option(LLAMA_STATIC "llama: static link libraries" OFF)
llama.cpp
@@ -17653,6 +17653,11 @@ const char * llama_print_system_info(void) {
17653
s += "SSSE3 = " + std::to_string(ggml_cpu_has_ssse3()) + " | ";
17654
s += "VSX = " + std::to_string(ggml_cpu_has_vsx()) + " | ";
17655
s += "MATMUL_INT8 = " + std::to_string(ggml_cpu_has_matmul_int8()) + " | ";
17656
+#ifdef GGML_USE_LLAMAFILE
17657
+ s += "LAMMAFILE = 1 | ";
17658
+#else
17659
+ s += "LAMMAFILE = 0 | ";
17660
+#endif
17661
17662
return s.c_str();
17663
}
0 commit comments