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 4343 set (LLAMA_METAL_DEFAULT OFF )
4444endif ()
4545
46+ set (LLAMA_LLAMAFILE_DEFAULT ON )
47+
4648# general
4749option (BUILD_SHARED_LIBS "build shared libraries" OFF )
4850option (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) {
1765317653 s += "SSSE3 = " + std::to_string(ggml_cpu_has_ssse3()) + " | ";
1765417654 s += "VSX = " + std::to_string(ggml_cpu_has_vsx()) + " | ";
1765517655 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
1765617661
1765717662 return s.c_str();
1765817663}
You can’t perform that action at this time.
0 commit comments