Skip to content

Commit a1429c2

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

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
@@ -15123,7 +15123,7 @@ struct llm_build_context {
1512315123
)
1512415124
);
1512515125

15126-
ggml_tensor * x_norm_ffn = llm_build_norm(ctx0, cur, hparams, layer->attn_norm_2, layer->attn_norm_2_b, LLM_NORM, cb, il);
15126+
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);
1512715127
x_prev = ggml_concat(
1512815128
ctx0,
1512915129
ffn_shift,
@@ -15159,7 +15159,7 @@ struct llm_build_context {
1515915159
}
1516015160

1516115161
cur = inpL;
15162-
ggml_tensor * inp_out_ids = build_inp_out_ids();
15162+
struct ggml_tensor * inp_out_ids = build_inp_out_ids();
1516315163
cur = ggml_reshape_2d(ctx0, cur, n_embd, n_tokens);
1516415164
cur = ggml_get_rows(ctx0, cur, inp_out_ids);
1516515165

0 commit comments

Comments
 (0)