]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
llama : remove unintended whitespace (#14592)
authorSigbjørn Skjæret <redacted>
Wed, 9 Jul 2025 08:19:50 +0000 (10:19 +0200)
committerGitHub <redacted>
Wed, 9 Jul 2025 08:19:50 +0000 (10:19 +0200)
src/llama-model.cpp

index e424350bdd78341f83b293400badacd930e5710d..4468c837f1c28e9dd018ac0b7cf3ba3fa685f243 100644 (file)
@@ -4555,7 +4555,7 @@ bool llama_model::load_tensors(llama_model_loader & ml) {
                     // output
                     output = create_tensor(tn(LLM_TENSOR_OUTPUT, "weight"), {hidden_size, n_vocab}, TENSOR_NOT_REQUIRED);
                     output_norm = create_tensor(tn(LLM_TENSOR_OUTPUT_NORM, "weight"), {hidden_size}, 0);
-                    
+
                     // if output is NULL, init from the input tok embed
                     if (output == NULL) {
                         output = create_tensor(tn(LLM_TENSOR_TOKEN_EMBD, "weight"), {hidden_size, n_vocab}, TENSOR_DUPLICATED);