Skip to content

Commit 40058c0

Browse files
Update src/llama-model.cpp
Co-authored-by: Sigbjørn Skjæret <[email protected]>
1 parent 7fe1794 commit 40058c0

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
@@ -4600,7 +4600,7 @@ bool llama_model::load_tensors(llama_model_loader & ml) {
46004600
if (output == NULL) {
46014601
output = create_tensor(tn(LLM_TENSOR_TOKEN_EMBD, "weight"), {n_embd, n_vocab}, TENSOR_DUPLICATED);
46024602
}
4603-
4603+
46044604
for (int i = 0; i < n_layer; ++i) {
46054605
auto & layer = layers[i];
46064606
layer.attn_norm = create_tensor(tn(LLM_TENSOR_ATTN_NORM, "weight", i), {n_embd}, 0);

0 commit comments

Comments
 (0)