Skip to content

Commit a44bc96

Browse files
committed
llama : fix typo
1 parent 2c4fb69 commit a44bc96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llama.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3932,7 +3932,7 @@ static void llm_load_print_meta(llama_model_loader & ml, llama_model & model) {
39323932
LLAMA_LOG_INFO("%s: n_ff = %u\n", __func__, hparams.n_ff);
39333933
LLAMA_LOG_INFO("%s: n_expert = %u\n", __func__, hparams.n_expert);
39343934
LLAMA_LOG_INFO("%s: n_expert_used = %u\n", __func__, hparams.n_expert_used);
3935-
LLAMA_LOG_INFO("%s: causal attm = %d\n", __func__, hparams.causal_attn);
3935+
LLAMA_LOG_INFO("%s: causal attn = %d\n", __func__, hparams.causal_attn);
39363936
LLAMA_LOG_INFO("%s: pooling type = %d\n", __func__, hparams.pooling_type);
39373937
LLAMA_LOG_INFO("%s: rope type = %d\n", __func__, hparams.rope_type);
39383938
LLAMA_LOG_INFO("%s: rope scaling = %s\n", __func__, rope_scaling_type);

0 commit comments

Comments
 (0)