From 40ad7d7ff2bdc34fcf2c873a8e3c4740375fa4bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20G=C3=A4=C3=9Fler?= Date: Mon, 29 Apr 2024 14:00:07 +0200 Subject: [PATCH] fix typo: LAMMAFILE -> LLAMAFILE --- llama.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llama.cpp b/llama.cpp index 3c64622d7..30af5991f 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();