]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
llama : fix typo LAMMAFILE -> LLAMAFILE (#6974)
authorJohannes Gäßler <redacted>
Mon, 29 Apr 2024 12:36:22 +0000 (14:36 +0200)
committerGitHub <redacted>
Mon, 29 Apr 2024 12:36:22 +0000 (15:36 +0300)
llama.cpp

index 3c64622d7c8dc1c3ae422301adc033b5a6022306..30af5991fe8f019ce982efb1902ec41a29321465 100644 (file)
--- 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();