Skip to content

Commit 5aaf38c

Browse files
piDackCISC
andauthored
Update src/llama-model.cpp
Format adjustment Co-authored-by: Sigbjørn Skjæret <[email protected]>
1 parent 5ba8f23 commit 5aaf38c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/llama-model.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3510,7 +3510,7 @@ bool llama_model::load_tensors(llama_model_loader & ml) {
35103510

35113511
// output
35123512
output_norm = create_tensor(tn(LLM_TENSOR_OUTPUT_NORM, "weight"), {n_embd}, 0);
3513-
output = create_tensor(tn(LLM_TENSOR_OUTPUT, "weight"), {n_embd, n_vocab}, TENSOR_NOT_REQUIRED);
3513+
output = create_tensor(tn(LLM_TENSOR_OUTPUT, "weight"), {n_embd, n_vocab}, TENSOR_NOT_REQUIRED);
35143514
// if output is NULL, init from the input tok embed
35153515
if (output == NULL) {
35163516
output = create_tensor(tn(LLM_TENSOR_TOKEN_EMBD, "weight"), {n_embd, n_vocab}, TENSOR_DUPLICATED);

0 commit comments

Comments
 (0)