update norm
This commit is contained in:
parent
b2330f57e2
commit
9d49236570
1 changed files with 7 additions and 5 deletions
12
llama.cpp
12
llama.cpp
|
@ -5611,11 +5611,13 @@ struct llm_build_context {
|
||||||
|
|
||||||
cur = inpL;
|
cur = inpL;
|
||||||
|
|
||||||
cur = llm_build_norm(ctx0, cur, hparams,
|
// norm
|
||||||
model.output_norm,
|
{
|
||||||
model.output_norm_b,
|
cur = llm_build_norm(ctx0, cur, hparams,
|
||||||
LLM_NORM, cb, -1);
|
model.output_norm, NULL,
|
||||||
cb(cur, "result_norm", -1);
|
LLM_NORM_RMS, cb, -1);
|
||||||
|
cb(cur, "result_norm", -1);
|
||||||
|
}
|
||||||
|
|
||||||
// lm_head
|
// lm_head
|
||||||
cur = ggml_mul_mat(ctx0, model.output, cur);
|
cur = ggml_mul_mat(ctx0, model.output, cur);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue