Skip to content

Commit

Permalink
llama : fix typo LAMMAFILE -> LLAMAFILE (#6974)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesGaessler authored Apr 29, 2024
1 parent e00b4a8 commit c4f708a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llama.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit c4f708a

Please sign in to comment.