File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 43
43
set (LLAMA_METAL_DEFAULT OFF )
44
44
endif ()
45
45
46
+ set (LLAMA_LLAMAFILE_DEFAULT ON )
47
+
46
48
# general
47
49
option (BUILD_SHARED_LIBS "build shared libraries" OFF )
48
50
option (LLAMA_STATIC "llama: static link libraries" OFF )
Original file line number Diff line number Diff line change @@ -17653,6 +17653,11 @@ const char * llama_print_system_info(void) {
17653
17653
s += "SSSE3 = " + std::to_string(ggml_cpu_has_ssse3()) + " | ";
17654
17654
s += "VSX = " + std::to_string(ggml_cpu_has_vsx()) + " | ";
17655
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
17656
17661
17657
17662
return s.c_str();
17658
17663
}
You can’t perform that action at this time.
0 commit comments