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

Function ggml_compute_forward_leaky

ggml.c:9087–9101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9085}
9086
9087static void ggml_compute_forward_leaky(
9088 const struct ggml_compute_params * params,
9089 const struct ggml_tensor * src0,
9090 struct ggml_tensor * dst) {
9091 switch (src0->type) {
9092 case GGML_TYPE_F32:
9093 {
9094 ggml_compute_forward_leaky_f32(params, src0, dst);
9095 } break;
9096 default:
9097 {
9098 GGML_ASSERT(false);
9099 } break;
9100 }
9101}
9102
9103// ggml_compute_forward_silu_back
9104

Callers 1

Calls 1

Tested by

no test coverage detected