MCPcopy Create free account
hub / github.com/appdevforall/CodeOnTheGo / ggml_elu

Function ggml_elu

subprojects/llama.cpp/ggml/src/ggml.c:2620–2624  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2618// ggml_elu
2619
2620struct ggml_tensor * ggml_elu(
2621 struct ggml_context * ctx,
2622 struct ggml_tensor * a) {
2623 return ggml_unary(ctx, a, GGML_UNARY_OP_ELU);
2624}
2625
2626struct ggml_tensor * ggml_elu_inplace(
2627 struct ggml_context * ctx,

Callers

nothing calls this directly

Calls 1

ggml_unaryFunction · 0.85

Tested by

no test coverage detected