fix: switch to space from tab
This commit is contained in:
parent
e30ad7143f
commit
72a72854ee
1 changed files with 5 additions and 5 deletions
10
llama.cpp
10
llama.cpp
|
@ -3639,11 +3639,11 @@ static struct ggml_cgraph * llm_build_starcoder(
|
|||
inpL = ggml_add(ctx0, cur, inpFF);
|
||||
}
|
||||
|
||||
// Output Norm
|
||||
{
|
||||
cur = ggml_norm(ctx0, inpL, norm_eps);
|
||||
cur = ggml_add(ctx0, ggml_mul(ctx0, cur, model.output_norm), model.output_norm_b);
|
||||
}
|
||||
// Output Norm
|
||||
{
|
||||
cur = ggml_norm(ctx0, inpL, norm_eps);
|
||||
cur = ggml_add(ctx0, ggml_mul(ctx0, cur, model.output_norm), model.output_norm_b);
|
||||
}
|
||||
ggml_set_name(cur, "result_norm");
|
||||
|
||||
cur = ggml_mul_mat(ctx0, model.output, cur);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue