]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
llama : fix typo
authorGeorgi Gerganov <redacted>
Thu, 14 Mar 2024 11:13:06 +0000 (13:13 +0200)
committerGeorgi Gerganov <redacted>
Thu, 14 Mar 2024 11:13:06 +0000 (13:13 +0200)
llama.cpp

index ff467c5756a1a969a867617e4b67de433844e7f2..eb48b1e90c8d1cbdc3ed14384f82cf5c3300dce6 100644 (file)
--- a/llama.cpp
+++ b/llama.cpp
@@ -3932,7 +3932,7 @@ static void llm_load_print_meta(llama_model_loader & ml, llama_model & model) {
     LLAMA_LOG_INFO("%s: n_ff             = %u\n",     __func__, hparams.n_ff);
     LLAMA_LOG_INFO("%s: n_expert         = %u\n",     __func__, hparams.n_expert);
     LLAMA_LOG_INFO("%s: n_expert_used    = %u\n",     __func__, hparams.n_expert_used);
-    LLAMA_LOG_INFO("%s: causal attm      = %d\n",     __func__, hparams.causal_attn);
+    LLAMA_LOG_INFO("%s: causal attn      = %d\n",     __func__, hparams.causal_attn);
     LLAMA_LOG_INFO("%s: pooling type     = %d\n",     __func__, hparams.pooling_type);
     LLAMA_LOG_INFO("%s: rope type        = %d\n",     __func__, hparams.rope_type);
     LLAMA_LOG_INFO("%s: rope scaling     = %s\n",     __func__, rope_scaling_type);