MCPcopy Create free account
hub / github.com/Tiiny-AI/PowerInfer / ggml_silu

Function ggml_silu

ggml.c:3895–3899  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3893// ggml_silu
3894
3895struct ggml_tensor * ggml_silu(
3896 struct ggml_context * ctx,
3897 struct ggml_tensor * a) {
3898 return ggml_unary(ctx, a, GGML_UNARY_OP_SILU);
3899}
3900
3901struct ggml_tensor * ggml_silu_inplace(
3902 struct ggml_context * ctx,

Callers 7

llm_build_ffnFunction · 0.70
mainFunction · 0.50
forwardFunction · 0.50
forward_batchFunction · 0.50
forward_loraFunction · 0.50
llama_build_train_graphsFunction · 0.50

Calls 1

ggml_unaryFunction · 0.70

Tested by 1

mainFunction · 0.40