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

Function ggml_compute_forward_elu

ggml.c:8826–8840  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8824}
8825
8826static void ggml_compute_forward_elu(
8827 const struct ggml_compute_params * params,
8828 const struct ggml_tensor * src0,
8829 struct ggml_tensor * dst) {
8830 switch (src0->type) {
8831 case GGML_TYPE_F32:
8832 {
8833 ggml_compute_forward_elu_f32(params, src0, dst);
8834 } break;
8835 default:
8836 {
8837 GGML_ASSERT(false);
8838 } break;
8839 }
8840}
8841
8842// ggml_compute_forward_relu
8843

Callers 1

Calls 1

Tested by

no test coverage detected