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)
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();
}