| 8824 | } |
| 8825 | |
| 8826 | static 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 |
no test coverage detected