diff options
author | Johannes Gäßler <johannesg@5d6.de> | 2024-04-29 14:36:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-29 15:36:22 +0300 |
commit | c4f708a93f1df5e35167f9313e000d381298be7f (patch) | |
tree | 2149cadcfd72c9b3720621dde17af5e225264d53 | |
parent | e00b4a8f816ebc45b98a46e5f5231359b9a017e0 (diff) |
llama : fix typo LAMMAFILE -> LLAMAFILE (#6974)
-rw-r--r-- | llama.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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(); |