fix: remove ggml_repeat
This commit is contained in:
parent
e8fae2db7a
commit
a600c61da2
1 changed files with 1 additions and 3 deletions
|
@ -4072,9 +4072,7 @@ static struct ggml_tensor * llm_build_ffn_mpt_awq(
|
|||
{
|
||||
cur = ggml_gelu(ctx, cur);
|
||||
cb(cur, "ffn_relu", il);
|
||||
struct ggml_tensor *repeat = ggml_repeat(ctx, act_scales, cur);
|
||||
cb(repeat, "ffn_repeat(scales)", il);
|
||||
cur = ggml_div(ctx, cur, repeat);
|
||||
cur = ggml_div(ctx, cur, act_scales);
|
||||
cb(cur, "ffn_div(gelu)", il);
|
||||
} break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue