Explorar o código

llama : fix typo LAMMAFILE -> LLAMAFILE (#6974)

Johannes Gäßler hai 1 ano
pai
achega
c4f708a93f
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      llama.cpp

+ 2 - 2
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();