Skip to content

Commit 7444046

Browse files
committed
llama: rwkv6: Apply code format changes
Signed-off-by: Molly Sophia <mollysophia379@gmail.com>
1 parent 5f00c52 commit 7444046

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/llama.cpp‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15125,7 +15125,7 @@ struct llm_build_context {
1512515125
)
1512615126
);
1512715127

15128-
ggml_tensor * x_norm_ffn = llm_build_norm(ctx0, cur, hparams, layer->attn_norm_2, layer->attn_norm_2_b, LLM_NORM, cb, il);
15128+
struct ggml_tensor * x_norm_ffn = llm_build_norm(ctx0, cur, hparams, layer->attn_norm_2, layer->attn_norm_2_b, LLM_NORM, cb, il);
1512915129
x_prev = ggml_concat(
1513015130
ctx0,
1513115131
ffn_shift,
@@ -15161,7 +15161,7 @@ struct llm_build_context {
1516115161
}
1516215162

1516315163
cur = inpL;
15164-
ggml_tensor * inp_out_ids = build_inp_out_ids();
15164+
struct ggml_tensor * inp_out_ids = build_inp_out_ids();
1516515165
cur = ggml_reshape_2d(ctx0, cur, n_embd, n_tokens);
1516615166
cur = ggml_get_rows(ctx0, cur, inp_out_ids);
1516715167

0 commit comments

Comments
 (0)