From: Johannes Gäßler Date: Mon, 29 Apr 2024 12:36:22 +0000 (+0200) Subject: llama : fix typo LAMMAFILE -> LLAMAFILE (#6974) X-Git-Tag: upstream/0.0.4488~1731 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=c4f708a93f1df5e35167f9313e000d381298be7f;p=pkg%2Fggml%2Fsources%2Fllama.cpp llama : fix typo LAMMAFILE -> LLAMAFILE (#6974) --- diff --git a/llama.cpp b/llama.cpp index 3c64622d..30af5991 100644 --- a/llama.cpp +++ b/llama.cpp @@ -17729,9 +17729,9 @@ const char * llama_print_system_info(void) { 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 | "; + s += "LLAMAFILE = 1 | "; #else - s += "LAMMAFILE = 0 | "; + s += "LLAMAFILE = 0 | "; #endif return s.c_str();