llama : remove unintended whitespace (#14592)

This commit is contained in:
Sigbjørn Skjæret 2025-07-09 10:19:50 +02:00 committed by GitHub
parent 04655063c4
commit 105554595f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View 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);