cmake : restore LLAMA_LLAMAFILE_DEFAULT

This commit is contained in:
Georgi Gerganov 2024-04-25 21:31:17 +03:00
parent fa0b4ad252
commit dba497e0c1
No known key found for this signature in database
GPG key ID: 449E073F9DC10735
2 changed files with 7 additions and 0 deletions

View file

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