diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2024-04-25 21:31:17 +0300 |
---|---|---|
committer | Georgi Gerganov <ggerganov@gmail.com> | 2024-04-25 21:37:27 +0300 |
commit | dba497e0c1eff27cf0e85d1d73c86fa08e1b5557 (patch) | |
tree | 9e46598b6f25585b5d7c31cdcda4c36f7fdce86c /llama.cpp | |
parent | fa0b4ad25208d5ec2df6b998ccb29b49b249e82c (diff) |
cmake : restore LLAMA_LLAMAFILE_DEFAULT
Diffstat (limited to 'llama.cpp')
-rw-r--r-- | llama.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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(); } |